Cat
IOobject.cpp
Go to the documentation of this file.
1 // $Id: $
2 // Include files
3 
4 
5 // local
6 #include "IOobject.h"
7 
8 //-----------------------------------------------------------------------------
9 // Implementation file for class : IOobject
10 //
11 // 2006-10-23 :
12 //-----------------------------------------------------------------------------
13 
14 //=============================================================================
15 // Standard constructor, initializes variables
16 //=============================================================================
18  setName("IOobject");
19  setType("IOobject");
21  m_io=new IOdata();
22 }
23 //=============================================================================
24 // Destructor
25 //=============================================================================
27  delete m_io;
28 }
29 
30 //=============================================================================
void add(int attribut)
Definition: Attrib.h:67
void setName(std::string name)
Definition: Object.h:51
IOdata * m_io
Definition: IOobject.h:99
void setType(std::string type)
Definition: Object.h:52
virtual ~IOobject()
Destructor.
Definition: IOobject.cpp:26
Definition: IOdata.h:17
IOobject()
Standard constructor.
Definition: IOobject.cpp:17