/simpletypesystem/trunk

To get this branch, use:
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"
5.2.7 by Gustav Hartvigsson
* Switched licence to a more permisive one.
33
79 by Gustav Hartvigsson
* Clean up of SMap's for each code.
34
110 by Gustav Hartvigsson
* added S_ prifix to my macros. I should not be a scrub.
35
S_BEGIN_DECLS
3 by Gustav Hartvigsson
Fixed a few things...
36
118 by Gustav Hartvigsson
* Added embedded copyright information in the library.
37
S_UNUSED
38
static char *
39
__LIBSSTS__LICENSE__[] = {
40
"Copyright (c) 2013-2016 Gustav Hartvigsson\n"
41
"\n"
42
"Permission is hereby granted, free of charge, to any person obtaining a copy "
43
"of this software and associated documentation files (the \"Software\"), to deal "
44
"in the Software without restriction, including without limitation the rights "
45
"to use, copy, modify, merge, publish, distribute, sublicense, and/or sell "
46
"copies of the Software, and to permit persons to whom the Software i "
47
"furnished to do so, subject to the following conditions: \n"
48
"\n"
49
"The above copyright notice and this permission notice shall be included in "
50
"all copies or substantial portions of the Software. \n"
51
"\n"
52
"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR \n"
53
"IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, "
54
"FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE "
55
"AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER "
56
"LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, "
57
"OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN "
58
"THE SOFTWARE.\n",
59
0x0,
60
0x0
61
};
62
63
S_UNUSED
64
static char *
65
__LIBSSTS__AUTHOR__[] = {
66
"(2013-2016) Gustav Hartvigsson <+GustavHartvigsson><gustav.hartvigsson@gmail.com>",
67
0x0,
68
0x0
69
};
70
71
S_UNUSED
72
static char * __LIBSSTS__INFO__[] = {
73
"Library Name: libssts",
74
"Library Full Name: Super Simple Type System",
75
"libssts is a simpel, \"object\" system in the style of GObject. The library "
76
"has main loop functionallity and some data structures like DynamicArray and "
77
"LinkedList. It is very versetile and what not. Have fun!",
78
0x0,
79
0x0
80
};
81
5.1.1 by Gustav Hartvigsson
* Started work on making the code more prasable by DoxyGen.
82
/**
83
 * Returns a string representing the current version.
84
 */
119 by Gustav Hartvigsson
* added S_EXPERTED to public functions.
85
S_EXPORTED
61 by Gustav Hartvigsson
* Made the code more easy to read.
86
char *
87
s_get_version_string ();
5.1.1 by Gustav Hartvigsson
* Started work on making the code more prasable by DoxyGen.
88
89
/**
90
 * Returns the Major version as on int.
91
 */
119 by Gustav Hartvigsson
* added S_EXPERTED to public functions.
92
S_EXPORTED
61 by Gustav Hartvigsson
* Made the code more easy to read.
93
int
94
s_get_version_major ();
5.1.1 by Gustav Hartvigsson
* Started work on making the code more prasable by DoxyGen.
95
96
/**
97
 * Returns the Minor version as on int.
98
 */
119 by Gustav Hartvigsson
* added S_EXPERTED to public functions.
99
S_EXPORTED
61 by Gustav Hartvigsson
* Made the code more easy to read.
100
int
101
s_get_version_minor ();
5.1.1 by Gustav Hartvigsson
* Started work on making the code more prasable by DoxyGen.
102
103
/**
104
 * Returns the Patch version as on int.
105
 */
119 by Gustav Hartvigsson
* added S_EXPERTED to public functions.
106
S_EXPORTED
61 by Gustav Hartvigsson
* Made the code more easy to read.
107
int
108
s_get_version_patch ();
3 by Gustav Hartvigsson
Fixed a few things...
109
110
110 by Gustav Hartvigsson
* added S_ prifix to my macros. I should not be a scrub.
111
S_END_DECLS