18 lines
394 B
C
18 lines
394 B
C
|
#ifndef SURFACE_INTERPRETER_H
|
||
|
#define SURFACE_INTERPRETER_H
|
||
|
|
||
|
#include "ObjectInterpreter.h"
|
||
|
#include <vector>
|
||
|
#include <string>
|
||
|
#include <memory>
|
||
|
|
||
|
class DATAMANAGER_DLL_API_EXPORTS SurfaceInterpreter : public ObjectInterpreter {
|
||
|
public:
|
||
|
SurfaceInterpreter();
|
||
|
|
||
|
void ExecuteCommand(std::vector<std::string> &commandLines, Surface_M& Surface);
|
||
|
|
||
|
private:
|
||
|
};
|
||
|
|
||
|
#endif // SURFACE_INTERPRETER_H
|