Stub out the reflection module

This commit is contained in:
Jason Turner
2010-08-28 18:29:38 +00:00
parent 329244759f
commit 71de169e09
2 changed files with 27 additions and 0 deletions

24
src/reflection.cpp Normal file
View File

@@ -0,0 +1,24 @@
#include <chaiscript/chaiscript.hpp>
#include <string>
CHAISCRIPT_MODULE_EXPORT chaiscript::ModulePtr create_chaiscript_module_reflection()
{
chaiscript::ModulePtr m(new chaiscript::Module());
/*
CHAISCRIPT_CLASS( m,
,
(Test ())
(Test (const Test &)),
((function))
((function2))
((function3))
((functionOverload)(std::string (Test::*)(double)))
((functionOverload)(std::string (Test::*)(int)))
);
*/
return m;
}