source: XIOS/trunk/src/xml_parser_decl.cpp @ 621

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

Implementing generic transformation algorithm (local commit)

+) Change a little bit to make sure everything work in order

Test
+) test_new_features passe with inverse

  • Property copyright set to
    Software name : XIOS (Xml I/O Server)
    http://forge.ipsl.jussieu.fr/ioserver
    Creation date : January 2009
    Licence : CeCCIL version2
    see license file in root directory : Licence_CeCILL_V2-en.txt
    or http://www.cecill.info/licences/Licence_CeCILL_V2-en.html
    Holder : CEA/LSCE (Laboratoire des Sciences du CLimat et de l'Environnement)
    CNRS/IPSL (Institut Pierre Simon Laplace)
    Project Manager : Yann Meurdesoif
    yann.meurdesoif@cea.fr
  • Property svn:eol-style set to native
File size: 793 bytes
Line 
1#include "xml_parser_impl.hpp"
2#include "group_template.hpp"
3#include "context.hpp"
4#include "axis.hpp"
5#include "domain.hpp"
6#include "field.hpp"
7#include "file.hpp"
8#include "variable.hpp"
9#include "transformation.hpp"
10
11namespace xios
12{
13  namespace xml
14  {
15    template void CXMLParser::ParseInclude<CContext>(StdIStream & stream, const string& fluxId, CContext& object) ;
16
17 #   define macro(T) \
18    template void CXMLParser::ParseInclude< CGroupTemplate<C##T, C##T##Group, C##T##Attributes> >(StdIStream & stream, const string& fluxId, CGroupTemplate<C##T, C##T##Group, C##T##Attributes>& object) ;
19
20    macro( Context )
21    macro( Axis )
22    macro( Domain )
23    macro( Grid )
24    macro( Field )
25    macro( File )
26    macro( Variable )
27    macro( InverseAxis )
28    macro( ZoomAxis )
29  }
30}
Note: See TracBrowser for help on using the repository browser.