1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-19 22:53:53 +00:00
openmw/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