Atlas  0.7.0
Networking protocol for the Worldforge system.
Version.h
1 // This file may be redistributed and modified only under the terms of
2 // the GNU Lesser General Public License (See COPYING for details).
3 // Copyright (C) 2004 Alistair Riddoch <alriddoch@zepler.org>
4 
5 // $Id$
6 
7 #ifndef ATLAS_VERSION_H
8 #define ATLAS_VERSION_H
9 
10 #define ATLAS_API_MAJOR_VERSION 0
11 #define ATLAS_API_MINOR_VERSION 7
12 
13 namespace Atlas {
14 
15 static const int apiMajorVersion = ATLAS_API_MAJOR_VERSION;
16 static const int apiMinorVersion = ATLAS_API_MINOR_VERSION;
17 
18 } // Atlas namespace
19 
20 #endif // ATLAS_VERSION_H
Definition: Bridge.h:21