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

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

Implementing the first prototype of filter

+) Create new class filter
+) Implement class for specific algorithm
+) Implement inversing algorithm

Test
+) On Curie
+) Grid with one axis: passed

  • 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: 774 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( Transformation )
28  }
29}
Note: See TracBrowser for help on using the repository browser.