/simpletypesystem/trunk

To get this branch, use:
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
41
#define SIMPLE_TYPE_SYSTEM_VERSION_MAJOR 0
42
#define SIMPLE_TYPE_SYSTEM_VERSION_MINOR 0
43
#define SIMPLE_TYPE_SYSTEM_VERSION_PATCH 1
44
45
46
#include "baseobject.h"
5.2.7 by Gustav Hartvigsson
* Switched licence to a more permisive one.
47
#include "defs.h"
3 by Gustav Hartvigsson
Fixed a few things...
48
#include "Error.h"
49
#include "Func.h"
5.2.7 by Gustav Hartvigsson
* Switched licence to a more permisive one.
50
#include "hash.h"
11 by Gustav Hartvigsson
* Finnished up a the inheritance documentation.
51
#include "Interface.h"
52
#include "MainLoop.h"
5.2.7 by Gustav Hartvigsson
* Switched licence to a more permisive one.
53
#include "Map.h"
5.2.8 by Gustav Hartvigsson
* Copied over LinkedList and DynamicArray from c_sdl_js
54
#include "utils.h"
5.2.7 by Gustav Hartvigsson
* Switched licence to a more permisive one.
55
56
BEGIN_DECLS
3 by Gustav Hartvigsson
Fixed a few things...
57
5.1.1 by Gustav Hartvigsson
* Started work on making the code more prasable by DoxyGen.
58
/**
59
 * Returns a string representing the current version.
60
 */
3 by Gustav Hartvigsson
Fixed a few things...
61
char * s_get_version_string ();
5.1.1 by Gustav Hartvigsson
* Started work on making the code more prasable by DoxyGen.
62
63
/**
64
 * Returns the Major version as on int.
65
 */
3 by Gustav Hartvigsson
Fixed a few things...
66
int s_get_version_major ();
5.1.1 by Gustav Hartvigsson
* Started work on making the code more prasable by DoxyGen.
67
68
/**
69
 * Returns the Minor version as on int.
70
 */
3 by Gustav Hartvigsson
Fixed a few things...
71
int s_get_version_minor ();
5.1.1 by Gustav Hartvigsson
* Started work on making the code more prasable by DoxyGen.
72
73
/**
74
 * Returns the Patch version as on int.
75
 */
3 by Gustav Hartvigsson
Fixed a few things...
76
int s_get_version_patch ();
77
78
5.2.7 by Gustav Hartvigsson
* Switched licence to a more permisive one.
79
END_DECLS
80
3 by Gustav Hartvigsson
Fixed a few things...
81
#endif