1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
/*
(C) Gustav Hartvigsson, 2013.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation, either version 3 of the
License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @mainpage SSTS -- The (Super) Simple Type System
* @author Gustav Hartvigsson
* @version 0.0.1-bzr (dev)
*
* @section About
* The (Super) Simple Type System is -- yet -- only an experiment. The base
* for (almost) all objects in the system are derived from
* @ref _SBaseObjectInstance .
*
*
*/
/** @file */
#ifndef __H_SIMPLE_TYPE_SYSTEM__
#define __H_SIMPLE_TYPE_SYSTEM__
#define SIMPLE_TYPE_SYSTEM_VERSION_MAJOR 0
#define SIMPLE_TYPE_SYSTEM_VERSION_MINOR 0
#define SIMPLE_TYPE_SYSTEM_VERSION_PATCH 1
#include "baseobject.h"
#include "Error.h"
#include "Func.h"
#include "Map.h"
#include "Interface.h"
#include "MainLoop.h"
/**
* Returns a string representing the current version.
*/
char * s_get_version_string ();
/**
* Returns the Major version as on int.
*/
int s_get_version_major ();
/**
* Returns the Minor version as on int.
*/
int s_get_version_minor ();
/**
* Returns the Patch version as on int.
*/
int s_get_version_patch ();
char * s_string_new (const char * s);
char * s_string_new_with_len (const char * s, size_t len);
void s_print (const char * string);
#endif
|