32 lines
895 B
C++
32 lines
895 B
C++
#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
|