mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2026-02-07 10:19:57 +08:00
15 lines
295 B
C++
15 lines
295 B
C++
#ifndef MULTIFILE_TEST_MODULE_HPP
|
|
#define MULTIFILE_TEST_MODULE_HPP
|
|
#include <chaiscript/chaiscript_basic.hpp>
|
|
|
|
class Multi_Test_Module
|
|
{
|
|
public:
|
|
static int get_module_value();
|
|
|
|
Multi_Test_Module();
|
|
|
|
chaiscript::ModulePtr get_module() const;
|
|
};
|
|
#endif // MULTIFILE_TEST_MODULE_HPP
|