bzr branch
http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk
|
11
by Gustav Hartvigsson
* Finnished up a the inheritance documentation. |
1 |
/**
|
|
91
by Gustav Hartvigsson
* Moved Version Number to config.h.in |
2 |
* @file
|
|
11
by Gustav Hartvigsson
* Finnished up a the inheritance documentation. |
3 |
* @mainpage SSTS -- The (Super) Simple Type System
|
4 |
* @author Gustav Hartvigsson
|
|
5 |
* @version 0.0.1-bzr (dev)
|
|
6 |
*
|
|
7 |
* @section About
|
|
8 |
* The (Super) Simple Type System is -- yet -- only an experiment. The base
|
|
|
91
by Gustav Hartvigsson
* Moved Version Number to config.h.in |
9 |
* for (almost) all objects in the system are derived from @ref SObject .
|
10 |
*
|
|
|
11
by Gustav Hartvigsson
* Finnished up a the inheritance documentation. |
11 |
*
|
12 |
*
|
|
13 |
*/
|
|
14 |
||
|
126.1.1
by Gustav Hartvigsson
* Using |
15 |
#pragma once
|
|
3
by Gustav Hartvigsson
Fixed a few things... |
16 |
|
|
29
by Gustav Hartvigsson
* Switched to CMake to future proof the project a lil' bit. |
17 |
#include "config.h" |
18 |
||
|
60
by Gustav Hartvigsson
* Added preliminary Matrix type and functions. |
19 |
#include "baseobject.h" |
|
79
by Gustav Hartvigsson
* Clean up of SMap's for each code. |
20 |
#include "Box.h" |
|
62
by Gustav Hartvigsson
* General documentation clean up. |
21 |
#include "Callback.h" |
|
46
by Gustav Hartvigsson
* Renamed DynamicArray to SDynamicArray. |
22 |
#include "defs.h" |
|
60
by Gustav Hartvigsson
* Added preliminary Matrix type and functions. |
23 |
#include "DynamicArray.h" |
|
109.1.5
by Gustav Hartvigsson
* Getting closer to fixing the callbacks... |
24 |
#include "LinkedList.h" |
|
3
by Gustav Hartvigsson
Fixed a few things... |
25 |
#include "Error.h" |
26 |
#include "Func.h" |
|
|
5.2.7
by Gustav Hartvigsson
* Switched licence to a more permisive one. |
27 |
#include "hash.h" |
|
11
by Gustav Hartvigsson
* Finnished up a the inheritance documentation. |
28 |
#include "Interface.h" |
29 |
#include "MainLoop.h" |
|
|
5.2.7
by Gustav Hartvigsson
* Switched licence to a more permisive one. |
30 |
#include "Map.h" |
|
60
by Gustav Hartvigsson
* Added preliminary Matrix type and functions. |
31 |
#include "Matrix.h" |
|
5.2.8
by Gustav Hartvigsson
* Copied over LinkedList and DynamicArray from c_sdl_js |
32 |
#include "utils.h" |
|
138
by Gustav Hartvigsson
* Fixed s_base_16_enc |
33 |
#include "BaseN.h" |
|
5.2.7
by Gustav Hartvigsson
* Switched licence to a more permisive one. |
34 |
|
|
79
by Gustav Hartvigsson
* Clean up of SMap's for each code. |
35 |
|
|
110
by Gustav Hartvigsson
* added S_ prifix to my macros. I should not be a scrub. |
36 |
S_BEGIN_DECLS
|
|
3
by Gustav Hartvigsson
Fixed a few things... |
37 |
|
|
118
by Gustav Hartvigsson
* Added embedded copyright information in the library. |
38 |
S_UNUSED
|
39 |
static char * |
|
40 |
__LIBSSTS__LICENSE__[] = { |
|
41 |
"Copyright (c) 2013-2016 Gustav Hartvigsson\n" |
|
42 |
"\n" |
|
43 |
"Permission is hereby granted, free of charge, to any person obtaining a copy "
|
|
44 |
"of this software and associated documentation files (the \"Software\"), to deal " |
|
45 |
"in the Software without restriction, including without limitation the rights "
|
|
46 |
"to use, copy, modify, merge, publish, distribute, sublicense, and/or sell "
|
|
47 |
"copies of the Software, and to permit persons to whom the Software i "
|
|
48 |
"furnished to do so, subject to the following conditions: \n" |
|
49 |
"\n" |
|
50 |
"The above copyright notice and this permission notice shall be included in "
|
|
51 |
"all copies or substantial portions of the Software. \n" |
|
52 |
"\n" |
|
53 |
"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR \n" |
|
54 |
"IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, "
|
|
55 |
"FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE "
|
|
56 |
"AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER "
|
|
57 |
"LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, "
|
|
58 |
"OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN "
|
|
59 |
"THE SOFTWARE.\n", |
|
60 |
0x0, |
|
61 |
0x0
|
|
62 |
};
|
|
63 |
||
64 |
S_UNUSED
|
|
65 |
static char * |
|
66 |
__LIBSSTS__AUTHOR__[] = { |
|
67 |
"(2013-2016) Gustav Hartvigsson <+GustavHartvigsson><gustav.hartvigsson@gmail.com>", |
|
68 |
0x0, |
|
69 |
0x0
|
|
70 |
};
|
|
71 |
||
72 |
S_UNUSED
|
|
73 |
static char * __LIBSSTS__INFO__[] = { |
|
74 |
"Library Name: libssts", |
|
75 |
"Library Full Name: Super Simple Type System", |
|
76 |
"libssts is a simpel, \"object\" system in the style of GObject. The library " |
|
77 |
"has main loop functionallity and some data structures like DynamicArray and "
|
|
78 |
"LinkedList. It is very versetile and what not. Have fun!", |
|
79 |
0x0, |
|
80 |
0x0
|
|
81 |
};
|
|
82 |
||
|
5.1.1
by Gustav Hartvigsson
* Started work on making the code more prasable by DoxyGen. |
83 |
/**
|
84 |
* Returns a string representing the current version.
|
|
85 |
*/
|
|
|
119
by Gustav Hartvigsson
* added S_EXPERTED to public functions. |
86 |
S_EXPORTED
|
|
61
by Gustav Hartvigsson
* Made the code more easy to read. |
87 |
char * |
88 |
s_get_version_string (); |
|
|
5.1.1
by Gustav Hartvigsson
* Started work on making the code more prasable by DoxyGen. |
89 |
|
90 |
/**
|
|
91 |
* Returns the Major version as on int.
|
|
92 |
*/
|
|
|
119
by Gustav Hartvigsson
* added S_EXPERTED to public functions. |
93 |
S_EXPORTED
|
|
61
by Gustav Hartvigsson
* Made the code more easy to read. |
94 |
int
|
95 |
s_get_version_major (); |
|
|
5.1.1
by Gustav Hartvigsson
* Started work on making the code more prasable by DoxyGen. |
96 |
|
97 |
/**
|
|
98 |
* Returns the Minor version as on int.
|
|
99 |
*/
|
|
|
119
by Gustav Hartvigsson
* added S_EXPERTED to public functions. |
100 |
S_EXPORTED
|
|
61
by Gustav Hartvigsson
* Made the code more easy to read. |
101 |
int
|
102 |
s_get_version_minor (); |
|
|
5.1.1
by Gustav Hartvigsson
* Started work on making the code more prasable by DoxyGen. |
103 |
|
104 |
/**
|
|
105 |
* Returns the Patch version as on int.
|
|
106 |
*/
|
|
|
119
by Gustav Hartvigsson
* added S_EXPERTED to public functions. |
107 |
S_EXPORTED
|
|
61
by Gustav Hartvigsson
* Made the code more easy to read. |
108 |
int
|
109 |
s_get_version_patch (); |
|
|
3
by Gustav Hartvigsson
Fixed a few things... |
110 |
|
111 |
||
|
110
by Gustav Hartvigsson
* added S_ prifix to my macros. I should not be a scrub. |
112 |
S_END_DECLS
|