~ubuntu-branches/ubuntu/breezy/aqsis/breezy

« back to all changes in this revision

Viewing changes to render/version.h

  • Committer: Bazaar Package Importer
  • Author(s): Will Newton
  • Date: 2004-12-07 20:06:49 UTC
  • Revision ID: james.westby@ubuntu.com-20041207200649-fccswkrvp4oc8lmn
Tags: upstream-0.9.3
Import upstream version 0.9.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Aqsis
 
2
// Copyright � 1997 - 2001, Paul C. Gregory
 
3
//
 
4
// Contact: pgregory@aqsis.com
 
5
//
 
6
// This library is free software; you can redistribute it and/or
 
7
// modify it under the terms of the GNU General Public
 
8
// License as published by the Free Software Foundation; either
 
9
// version 2 of the License, or (at your option) any later version.
 
10
//
 
11
// This library is distributed in the hope that it will be useful,
 
12
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
// General Public License for more details.
 
15
//
 
16
// You should have received a copy of the GNU General Public
 
17
// License along with this library; if not, write to the Free Software
 
18
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
19
 
 
20
 
 
21
/** \file
 
22
                \brief Version information and functions
 
23
                \author Paul C. Gregory (pgregory@aqsis.com)
 
24
*/
 
25
 
 
26
//? Is .h included already?
 
27
#ifndef VERSION_H_INCLUDED
 
28
#define VERSION_H_INCLUDED 1
 
29
 
 
30
#include "sstring.h"
 
31
 
 
32
#define STRNAME         "Aqsis"
 
33
 
 
34
#define VERMAJOR 0
 
35
#define VERMINOR 9
 
36
#define BUILD 3
 
37
#define VERSION_STR     "0.9.3"
 
38
 
 
39
#define GET_VERSION_FROM_STRING(a,b,c) TqInt __s=0,__e; \
 
40
                        __s+=strVersion.find_first_of("0123456789",__s);        __e=strVersion.find_first_of(".",__s); \
 
41
                        a=CqString(strVersion.substr(__s,__e)).ToDecInt();      __s+=__e;                                 \
 
42
                        __s+=strVersion.find_first_of("0123456789",__s);        __e=strVersion.find_first_of(".",__s); \
 
43
                        b=CqString(strVersion.substr(__s,__e)).ToDecInt();      __s+=__e;                                 \
 
44
                        __s+=strVersion.find_first_of("0123456789",__s);        __e=strVersion.find_first_of(".",__s); \
 
45
                        c=CqString(strVersion.substr(__s,__e)).ToDecInt();
 
46
 
 
47
#define CHECK_NEWER_VERSION(a,b,c) (((a)>VERMAJOR) || \
 
48
                                                                ((a)==VERMAJOR && (b)>VERMINOR) || \
 
49
                                                                ((a)==VERMAJOR && (b)==VERMINOR && (c)>BUILD))
 
50
 
 
51
#endif  // !VERSION_H_INCLUDED