bzr branch
http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk
|
5.1.1
by Gustav Hartvigsson
* Started work on making the code more prasable by DoxyGen. |
1 |
/*
|
|
5.2.7
by Gustav Hartvigsson
* Switched licence to a more permisive one. |
2 |
Copyright (c) 2013-2014 Gustav Hartvigsson
|
3 |
||
4 |
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5 |
of this software and associated documentation files (the "Software"), to deal
|
|
6 |
in the Software without restriction, including without limitation the rights
|
|
7 |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8 |
copies of the Software, and to permit persons to whom the Software is
|
|
9 |
furnished to do so, subject to the following conditions:
|
|
10 |
||
11 |
The above copyright notice and this permission notice shall be included in
|
|
12 |
all copies or substantial portions of the Software.
|
|
13 |
||
14 |
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15 |
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
16 |
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
17 |
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
18 |
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
19 |
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
20 |
THE SOFTWARE.
|
|
|
5.1.1
by Gustav Hartvigsson
* Started work on making the code more prasable by DoxyGen. |
21 |
*/
|
22 |
||
|
11
by Gustav Hartvigsson
* Finnished up a the inheritance documentation. |
23 |
/**
|
24 |
* @mainpage SSTS -- The (Super) Simple Type System
|
|
25 |
* @author Gustav Hartvigsson
|
|
26 |
* @version 0.0.1-bzr (dev)
|
|
27 |
*
|
|
28 |
* @section About
|
|
29 |
* The (Super) Simple Type System is -- yet -- only an experiment. The base
|
|
30 |
* for (almost) all objects in the system are derived from
|
|
31 |
* @ref _SBaseObjectInstance .
|
|
32 |
*
|
|
33 |
*
|
|
34 |
*/
|
|
35 |
||
|
5.1.1
by Gustav Hartvigsson
* Started work on making the code more prasable by DoxyGen. |
36 |
/** @file */
|
37 |
||
|
3
by Gustav Hartvigsson
Fixed a few things... |
38 |
#ifndef __H_SIMPLE_TYPE_SYSTEM__
|
39 |
#define __H_SIMPLE_TYPE_SYSTEM__
|
|
40 |
||
|
29
by Gustav Hartvigsson
* Switched to CMake to future proof the project a lil' bit. |
41 |
#include "config.h" |
42 |
||
43 |
/* TODO: change this to CMake controlled variables in config.h.in */
|
|
|
3
by Gustav Hartvigsson
Fixed a few things... |
44 |
#define SIMPLE_TYPE_SYSTEM_VERSION_MAJOR 0
|
45 |
#define SIMPLE_TYPE_SYSTEM_VERSION_MINOR 0
|
|
46 |
#define SIMPLE_TYPE_SYSTEM_VERSION_PATCH 1
|
|
47 |
||
48 |
#include "baseobject.h" |
|
|
5.2.7
by Gustav Hartvigsson
* Switched licence to a more permisive one. |
49 |
#include "defs.h" |
|
3
by Gustav Hartvigsson
Fixed a few things... |
50 |
#include "Error.h" |
51 |
#include "Func.h" |
|
|
5.2.7
by Gustav Hartvigsson
* Switched licence to a more permisive one. |
52 |
#include "hash.h" |
|
11
by Gustav Hartvigsson
* Finnished up a the inheritance documentation. |
53 |
#include "Interface.h" |
54 |
#include "MainLoop.h" |
|
|
5.2.7
by Gustav Hartvigsson
* Switched licence to a more permisive one. |
55 |
#include "Map.h" |
|
5.2.8
by Gustav Hartvigsson
* Copied over LinkedList and DynamicArray from c_sdl_js |
56 |
#include "utils.h" |
|
5.2.7
by Gustav Hartvigsson
* Switched licence to a more permisive one. |
57 |
|
58 |
BEGIN_DECLS
|
|
|
3
by Gustav Hartvigsson
Fixed a few things... |
59 |
|
|
5.1.1
by Gustav Hartvigsson
* Started work on making the code more prasable by DoxyGen. |
60 |
/**
|
61 |
* Returns a string representing the current version.
|
|
62 |
*/
|
|
|
3
by Gustav Hartvigsson
Fixed a few things... |
63 |
char * s_get_version_string (); |
|
5.1.1
by Gustav Hartvigsson
* Started work on making the code more prasable by DoxyGen. |
64 |
|
65 |
/**
|
|
66 |
* Returns the Major version as on int.
|
|
67 |
*/
|
|
|
3
by Gustav Hartvigsson
Fixed a few things... |
68 |
int s_get_version_major (); |
|
5.1.1
by Gustav Hartvigsson
* Started work on making the code more prasable by DoxyGen. |
69 |
|
70 |
/**
|
|
71 |
* Returns the Minor version as on int.
|
|
72 |
*/
|
|
|
3
by Gustav Hartvigsson
Fixed a few things... |
73 |
int s_get_version_minor (); |
|
5.1.1
by Gustav Hartvigsson
* Started work on making the code more prasable by DoxyGen. |
74 |
|
75 |
/**
|
|
76 |
* Returns the Patch version as on int.
|
|
77 |
*/
|
|
|
3
by Gustav Hartvigsson
Fixed a few things... |
78 |
int s_get_version_patch (); |
79 |
||
80 |
||
|
5.2.7
by Gustav Hartvigsson
* Switched licence to a more permisive one. |
81 |
END_DECLS
|
82 |
||
|
3
by Gustav Hartvigsson
Fixed a few things... |
83 |
#endif
|