MGCL V10  V10
MGCL V10
 全て クラス 名前空間 関数 変数 型定義 列挙型 列挙値 フレンド グループ ページ
IgesParamLine.h
1 /********************************************************************/
2 /* Copyright (c) 2015 DG Technologies Inc. and Yuzi Mizuno */
3 /* All rights reserved. */
4 /********************************************************************/
5 #if !defined( __MGIGESPARAMLINE_H__)
6 #define __MGIGESPARAMLINE_H__
7 
8 #include <memory>
9 #include <string>
10 #include "mg/MGCL.h"
11 
13 
16 
17 // Constructors.
18 
19 public:
22 
25 
27  MGIgesParamLine(std::auto_ptr<std::string> one_line, int DEpointer);
28 
30  std::auto_ptr<std::string>& paramLine(){return m_paramLine;};
31 
33  int DEpointer()const{return m_DE_back_pointer;};
34 
35 private:
36  std::auto_ptr<std::string> m_paramLine;
37  int m_DE_back_pointer;
39 };
41 
42 #endif // __MGIGESPARAMLINE_H__
std::auto_ptr< std::string > & paramLine()
Get the reference of paramline string area m_paramLine.
Definition: IgesParamLine.h:30
MGIgesParamLine describes a line of Parameter Data of an IGES file.
Definition: IgesParamLine.h:15
int DEpointer() const
get de pointer
Definition: IgesParamLine.h:33
MGIgesParamLine()
Constructs an object of class MGIgesParamLine.