1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 15:49:56 +00:00
openmw-tes3mp/components/interpreter/interpreter.hpp
2010-06-28 19:20:45 +02:00

28 lines
575 B
C++

#ifndef INTERPRETER_INTERPRETER_H_INCLUDED
#define INTERPRETER_INTERPRETER_H_INCLUDED
#include "runtime.hpp"
#include "types.hpp"
namespace Interpreter
{
class Interpreter
{
Runtime mRuntime;
// not implemented
Interpreter (const Interpreter&);
Interpreter& operator= (const Interpreter&);
public:
Interpreter (Context& context);
~Interpreter();
void run (const Type_Code *code, int codeSize);
};
}
#endif