Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-09-28 18:02:06 +0000
committerStijn Buys <ingar@osirion.org>2008-09-28 18:02:06 +0000
commitf46be446304dcb2d609fcd2648fd36d3f2fda054 (patch)
tree36e194d6e2d9d8fc48d03c4b8bb56d63e12276cf /src/core/parser.h
parentfd778219e40c5fbb4d0af1839cbc313caaf10d9d (diff)
intro module groundworks
Diffstat (limited to 'src/core/parser.h')
-rw-r--r--src/core/parser.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/core/parser.h b/src/core/parser.h
new file mode 100644
index 0000000..4f7b843
--- /dev/null
+++ b/src/core/parser.h
@@ -0,0 +1,25 @@
+/*
+ core/parser.h
+ This file is part of the Osirion project and is distributed under
+ the terms of the GNU General Public License version 2
+*/
+
+#ifndef __INCLUDED_CORE_PARSER_H__
+#define __INCLUDED_CORE_PARSER_H__
+
+
+#include "filesystem/inifile.h"
+#include "core/entity.h"
+
+namespace core {
+
+/// general parser routines
+class Parser {
+public:
+ /// read default entity keys from an ini file
+ static bool got_entity_key(filesystem::IniFile &inifile, core::Entity *entity);
+};
+
+}
+
+#endif // __INCLUDED_CORE_PARSER_H__ \ No newline at end of file