XC Open source finite element analysis program
MEDObject.h
1 //----------------------------------------------------------------------------
2 // XC program; finite element analysis code
3 // for structural analysis and design.
4 //
5 // Copyright (C) Luis Claudio Pérez Tato
6 //
7 // XC is free software: you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by
9 // the Free Software Foundation, either version 3 of the License, or
10 // (at your option) any later version.
11 //
12 // This software is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
16 //
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program.
20 // If not, see <http://www.gnu.org/licenses/>.
21 //----------------------------------------------------------------------------
22 //MEDObject.h
23 //Wrapper for MED objects (to export models to «Salome»).
24 
25 #ifndef MEDOBJECT_H
26 #define MEDOBJECT_H
27 
28 #include "xc_utils/src/nucleo/EntCmd.h"
29 #include "xc_utils/src/utils/ObjMap.h"
30 
31 namespace XC {
33 //
35 //
37 //
39 class MEDObject: public EntCmd
40  {
41  public:
42  typedef ObjMap<MEDObject> contenedor;
43  typedef contenedor::iterator iterator;
44  typedef contenedor::const_iterator const_iterator;
45  public:
46  MEDObject(void);
47 
48  };
49 } // end of XC namespace
50 #endif
Base class for MED objects.
Definition: MEDObject.h:39
MEDObject(void)
Constructor.
Definition: MEDObject.cc:28
================================================================================
Definition: ContinuaReprComponent.h:34