mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-28 21:07:59 +03:00
29 lines
575 B
C++
29 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
|
||
|
|