mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 06:39:49 +00: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
|
|
|