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 |
/**
|
|
91
by Gustav Hartvigsson
* Moved Version Number to config.h.in |
24 |
* @file
|
|
11
by Gustav Hartvigsson
* Finnished up a the inheritance documentation. |
25 |
* @mainpage SSTS -- The (Super) Simple Type System
|
26 |
* @author Gustav Hartvigsson
|
|
27 |
* @version 0.0.1-bzr (dev)
|
|
28 |
*
|
|
29 |
* @section About
|
|
30 |
* The (Super) Simple Type System is -- yet -- only an experiment. The base
|
|
|
91
by Gustav Hartvigsson
* Moved Version Number to config.h.in |
31 |
* for (almost) all objects in the system are derived from @ref SObject .
|
32 |
*
|
|
|
11
by Gustav Hartvigsson
* Finnished up a the inheritance documentation. |
33 |
*
|
34 |
*
|
|
35 |
*/
|
|
36 |
||
|
79
by Gustav Hartvigsson
* Clean up of SMap's for each code. |
37 |
|
38 |
||
|
5.1.1
by Gustav Hartvigsson
* Started work on making the code more prasable by DoxyGen. |
39 |
/** @file */
|
40 |
||
|
3
by Gustav Hartvigsson
Fixed a few things... |
41 |
#ifndef __H_SIMPLE_TYPE_SYSTEM__
|
42 |
#define __H_SIMPLE_TYPE_SYSTEM__
|
|
43 |
||
|
29
by Gustav Hartvigsson
* Switched to CMake to future proof the project a lil' bit. |
44 |
#include "config.h" |
45 |
||
|
60
by Gustav Hartvigsson
* Added preliminary Matrix type and functions. |
46 |
#include "baseobject.h" |
|
79
by Gustav Hartvigsson
* Clean up of SMap's for each code. |
47 |
#include "Box.h" |
|
62
by Gustav Hartvigsson
* General documentation clean up. |
48 |
#include "Callback.h" |
|
46
by Gustav Hartvigsson
* Renamed DynamicArray to SDynamicArray. |
49 |
#include "defs.h" |
|
60
by Gustav Hartvigsson
* Added preliminary Matrix type and functions. |
50 |
#include "DynamicArray.h" |
|
3
by Gustav Hartvigsson
Fixed a few things... |
51 |
#include "Error.h" |
52 |
#include "Func.h" |
|
|
5.2.7
by Gustav Hartvigsson
* Switched licence to a more permisive one. |
53 |
#include "hash.h" |
|
11
by Gustav Hartvigsson
* Finnished up a the inheritance documentation. |
54 |
#include "Interface.h" |
55 |
#include "MainLoop.h" |
|
|
5.2.7
by Gustav Hartvigsson
* Switched licence to a more permisive one. |
56 |
#include "Map.h" |
|
60
by Gustav Hartvigsson
* Added preliminary Matrix type and functions. |
57 |
#include "Matrix.h" |
|
5.2.8
by Gustav Hartvigsson
* Copied over LinkedList and DynamicArray from c_sdl_js |
58 |
#include "utils.h" |
|
5.2.7
by Gustav Hartvigsson
* Switched licence to a more permisive one. |
59 |
|
|
79
by Gustav Hartvigsson
* Clean up of SMap's for each code. |
60 |
|
|
5.2.7
by Gustav Hartvigsson
* Switched licence to a more permisive one. |
61 |
BEGIN_DECLS
|
|
3
by Gustav Hartvigsson
Fixed a few things... |
62 |
|
|
5.1.1
by Gustav Hartvigsson
* Started work on making the code more prasable by DoxyGen. |
63 |
/**
|
64 |
* Returns a string representing the current version.
|
|
65 |
*/
|
|
|
61
by Gustav Hartvigsson
* Made the code more easy to read. |
66 |
char * |
67 |
s_get_version_string (); |
|
|
5.1.1
by Gustav Hartvigsson
* Started work on making the code more prasable by DoxyGen. |
68 |
|
69 |
/**
|
|
70 |
* Returns the Major version as on int.
|
|
71 |
*/
|
|
|
61
by Gustav Hartvigsson
* Made the code more easy to read. |
72 |
int
|
73 |
s_get_version_major (); |
|
|
5.1.1
by Gustav Hartvigsson
* Started work on making the code more prasable by DoxyGen. |
74 |
|
75 |
/**
|
|
76 |
* Returns the Minor version as on int.
|
|
77 |
*/
|
|
|
61
by Gustav Hartvigsson
* Made the code more easy to read. |
78 |
int
|
79 |
s_get_version_minor (); |
|
|
5.1.1
by Gustav Hartvigsson
* Started work on making the code more prasable by DoxyGen. |
80 |
|
81 |
/**
|
|
82 |
* Returns the Patch version as on int.
|
|
83 |
*/
|
|
|
61
by Gustav Hartvigsson
* Made the code more easy to read. |
84 |
int
|
85 |
s_get_version_patch (); |
|
|
3
by Gustav Hartvigsson
Fixed a few things... |
86 |
|
87 |
||
|
5.2.7
by Gustav Hartvigsson
* Switched licence to a more permisive one. |
88 |
END_DECLS
|
89 |
||
|
3
by Gustav Hartvigsson
Fixed a few things... |
90 |
#endif
|