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

32 lines
895 B
C
Raw Normal View History

2025-06-25 15:06:42 +08:00
#ifndef SOLID_INTERPRETER_H
#define SOLID_INTERPRETER_H
#include "ObjectInterpreter.h"
#include <vector>
#include <string>
#include <memory>
class DATAMANAGER_DLL_API_EXPORTS SolidInterpreter : public ObjectInterpreter {
public:
SolidInterpreter();
void ExecuteCommand(std::vector<std::string> &commandLines, Solid_M& Surface);
void BOX(std::vector<std::string> &commandLines, Solid_M &o);
void RTANKSOLID(std::vector<std::string> &commandLines, Solid_M &o);
void CYLINDERSOLID(std::vector<std::string> &commandLines, Solid_M &o);
void SPHERESOLID(std::vector<std::string> &commandLines, Solid_M &o);
void ROTATIONSOLID(std::vector<std::string> &commandLines, Solid_M &o);
void SWEEPSOLID(std::vector<std::string> &commandLines, Solid_M &o);
void SOLID(std::vector<std::string> &commandLines, Solid_M &o);
private:
};
#endif // SOLID_INTERPRETER_H