source: XIOS/trunk/src/node/transformation.hpp @ 773

Last change on this file since 773 was 625, checked in by mhnguyen, 9 years ago

Correcting some compilation errors during merge

Test
+) On Curie
+) test_client and test_complete pass with correct results (there are some difference due to zoom)

File size: 793 bytes
Line 
1#ifndef __XIOS_CTransformation__
2#define __XIOS_CTransformation__
3
4#include "xios_spl.hpp"
5#include "transformation_enum.hpp"
6
7namespace xios {
8
9  ///--------------------------------------------------------------
10  /*!
11    \class CTransformation
12    This class describes inverse_axis in xml file.
13  */
14  template<typename T>
15  class CTransformation
16  {
17  public:
18    typedef typename std::list<std::pair<ETranformationType, CTransformation<T>* > > TransformationMapTypes;
19    typedef TransformationMapTypes TransMapTypes;
20
21    public :
22      /// Constructeurs ///
23      CTransformation(void) {}
24      virtual void checkValid(T* dest) = 0;
25
26      /// Destructeur ///
27      virtual ~CTransformation(void) {}
28  }; // class CTransformation
29
30} // namespace xios
31
32#endif // __XIOS_CTransformation__
Note: See TracBrowser for help on using the repository browser.