Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/func.h')
-rw-r--r--src/core/func.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/func.h b/src/core/func.h
index ad189b8..3a58295 100644
--- a/src/core/func.h
+++ b/src/core/func.h
@@ -10,6 +10,8 @@
#include "sys/sys.h"
#include <sstream>
+#include <string>
+#include <map>
namespace core
{
@@ -34,6 +36,9 @@ Func find(const std::string &functionname);
/// list the function registry
void list();
+/// the function registry
+extern std::map<std::string, Func> registry;
+
} // namespace func
} // namespace core