COMPASSi/trunk/code/inc/DataManager/Logic/Logic.DataManagement/Interpreters/SurfaceInterpreter.h

18 lines
394 B
C
Raw Normal View History

2025-06-25 15:06:42 +08:00
#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