1 | // $Id: version.cc 1321 2008-05-23 14:14:41Z peter $ |
---|
2 | |
---|
3 | /* |
---|
4 | Copyright (C) 2008 Peter Johansson |
---|
5 | |
---|
6 | This file is part of the yat library, http://trac.thep.lu.se/yat |
---|
7 | |
---|
8 | The yat library is free software; you can redistribute it and/or |
---|
9 | modify it under the terms of the GNU General Public License as |
---|
10 | published by the Free Software Foundation; either version 2 of the |
---|
11 | License, or (at your option) any later version. |
---|
12 | |
---|
13 | The yat library is distributed in the hope that it will be useful, |
---|
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
16 | General Public License for more details. |
---|
17 | |
---|
18 | You should have received a copy of the GNU General Public License |
---|
19 | along with this program; if not, write to the Free Software |
---|
20 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
---|
21 | 02111-1307, USA. |
---|
22 | */ |
---|
23 | |
---|
24 | #include "version.h" |
---|
25 | |
---|
26 | namespace theplu { |
---|
27 | namespace yat { |
---|
28 | namespace utility { |
---|
29 | |
---|
30 | unsigned int major_version(void) |
---|
31 | { |
---|
32 | return YAT_MAJOR_VERSION; |
---|
33 | } |
---|
34 | |
---|
35 | |
---|
36 | unsigned int minor_version(void) |
---|
37 | { |
---|
38 | return YAT_MINOR_VERSION; |
---|
39 | } |
---|
40 | |
---|
41 | |
---|
42 | unsigned int patch_version(void) |
---|
43 | { |
---|
44 | return YAT_PATCH_VERSION; |
---|
45 | } |
---|
46 | |
---|
47 | |
---|
48 | std::string version(void) |
---|
49 | { |
---|
50 | return YAT_VERSION; |
---|
51 | } |
---|
52 | |
---|
53 | |
---|
54 | }}} // end of namespace utility, yat and thep |
---|