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

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