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

« back to all changes in this revision

Viewing changes to lib-src/oxydlib/OxydVersion.h

  • 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
 
// Copyright 2003 Jeremy Sawicki
2
 
//
3
 
// This file is part of OxydLib.
4
 
//
5
 
// OxydLib is free software; you can redistribute it and/or modify
6
 
// it under the terms of the GNU General Public License as published by
7
 
// the Free Software Foundation; either version 2 of the License, or
8
 
// (at your option) any later version.
9
 
//
10
 
// OxydLib is distributed in the hope that it will be useful,
11
 
// but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
// GNU General Public License for more details.
14
 
//
15
 
// You should have received a copy of the GNU General Public License
16
 
// along with OxydLib; if not, write to the Free Software
17
 
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
 
 
19
 
#ifndef OXYDVERSION_H
20
 
#define OXYDVERSION_H
21
 
 
22
 
namespace OxydLib {
23
 
 
24
 
enum OxydVersion
25
 
{
26
 
  OxydVersion_Invalid = -1,
27
 
  OxydVersion_First = 0,
28
 
 
29
 
  OxydVersion_Oxyd1 = OxydVersion_First,
30
 
  OxydVersion_OxydMagnum,
31
 
  OxydVersion_OxydMagnumGold,
32
 
  OxydVersion_PerOxyd,
33
 
  OxydVersion_OxydExtra,
34
 
 
35
 
  OxydVersion_Count,
36
 
  OxydVersion_Last = OxydVersion_Count - 1
37
 
};
38
 
 
39
 
}
40
 
 
41
 
#endif