/********************************************************************/ /* Copyright (c) 2017 System fugen G.K. and Yuzi Mizuno */ /* All rights reserved. */ /********************************************************************/ #if !defined( __MGIGESPARAMLINE_H__) #define __MGIGESPARAMLINE_H__ #include #include #include "mg/MGCL.h" ///MGIgesParamLine describes a line of Parameter Data of an IGES file. ///This is used to output one line os Parameter Data Section. class MGIgesParamLine{ // Constructors. public: /// Constructs an object of class MGIgesParamLine. MGIgesParamLine(); ///Construct inputting only DEpoiter. MGIgesParamLine(int DEpointer); ///one_line.size() must be <=64. MGIgesParamLine(std::unique_ptr& one_line, int DEpointer); ///Get the reference of paramline string area m_paramLine. std::unique_ptr& paramLine(){return m_paramLine;}; ///get de pointer int DEpointer()const{return m_DE_back_pointer;}; private: std::unique_ptr m_paramLine;///