~ubuntu-branches/ubuntu/intrepid/enigma/intrepid

« back to all changes in this revision

Viewing changes to src/px/system.hh

  • Committer: Bazaar Package Importer
  • Author(s): Erich Schubert
  • Date: 2005-08-28 15:30:09 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050828153009-sky64kb6tcq37xt5
Tags: 0.92.1-1
* New upstream subversion checkout
* Remove menu.s3m, which we are allowed to distributed but not to modify
  also copyright notice is confusing... (Closes: #321669)
* Rebuild with new libzipios (Closes: #325405)
  I hope this works without a versioned build-dependency
* Added "enigma replaces enigma-data" for upgrades (Closes: #308558)
* Added notes about the fonts copyright.
* updated to policy 3.6.2.1 (no changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (C) 2002,2003,2004 Daniel Heck
3
 
 *
4
 
 * This program is free software; you can redistribute it and/or
5
 
 * modify it under the terms of the GNU General Public License
6
 
 * as published by the Free Software Foundation; either version 2
7
 
 * of the License, or (at your option) any later version.
8
 
 *
9
 
 * This program is distributed in the hope that it will be useful,
10
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
 * GNU General Public License for more details.
13
 
 *
14
 
 * You should have received a copy of the GNU General Public License along
15
 
 * with this program; if not, write to the Free Software Foundation, Inc.,
16
 
 * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
17
 
 *
18
 
 * $Id: system.hh,v 1.1 2003/10/27 11:45:48 reallysoft Exp $
19
 
 */
20
 
#ifndef SYSTEM_HH
21
 
#define SYSTEM_HH
22
 
 
23
 
#include <string>
24
 
#include <ctime>
25
 
 
26
 
namespace px
27
 
{
28
 
    extern const char *PathSeparator;
29
 
 
30
 
    std::string ExpandPath (const std::string &path);
31
 
 
32
 
    bool        FileExists (const std::string &fname);
33
 
    std::time_t FileModTime (const std::string &fname);
34
 
        
35
 
    bool FolderExists (const std::string &fname);
36
 
    bool FolderCreate (const std::string &fname);
37
 
 
38
 
/* -------------------- Locales -------------------- */
39
 
 
40
 
    std::string DefaultMessageLocale ();
41
 
 
42
 
    std::string GetLanguageCode (const std::string &localename);
43
 
}
44
 
#endif