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.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/core/func.h b/src/core/func.h
index 1af69c0..ad189b8 100644
--- a/src/core/func.h
+++ b/src/core/func.h
@@ -1,5 +1,5 @@
/*
- core/funct.h
+ core/func.h
This file is part of the Osirion project and is distributed under
the terms of the GNU General Public License version 2
*/
@@ -7,6 +7,8 @@
#ifndef __INCLUDED_CORE_FUNC_H__
#define __INCLUDED_CORE_FUNC_H__
+#include "sys/sys.h"
+
#include <sstream>
namespace core
@@ -28,8 +30,13 @@ void remove(const std::string &functionname);
/** Returns 0 if the function pointer could not be found
*/
Func find(const std::string &functionname);
-}
-}
+/// list the function registry
+void list();
+
+} // namespace func
+
+} // namespace core
#endif // __INCLUDED_CORE_FUNC_H__
+