source: XIOS/dev/dev_ym/XIOS_COUPLING/src/xml_parser_decl.cpp @ 1878

Last change on this file since 1878 was 1782, checked in by ymipsl, 4 years ago

coupling branch : implement new objet coupler_in and coupler_out to be properly parsed from XML file.

YM

  • 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: 1.3 KB
Line 
1#include "xml_parser_impl.hpp"
2#include "group_template.hpp"
3#include "node_type.hpp"
4
5namespace xios
6{
7  namespace xml
8  {
9    template void CXMLParser::ParseInclude<CContext>(StdIStream & stream, const string& fluxId, CContext& object) ;
10
11 #   define macro(T) \
12    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) ;
13
14    macro( Context )
15    macro( Axis )
16    macro( Domain )
17    macro( Grid )
18    macro( Field )
19    macro( File )
20    macro( CouplerIn )
21    macro( CouplerOut )
22    macro( Variable )
23    macro( InverseAxis )
24    macro( ZoomAxis )
25    macro( InterpolateAxis )
26    macro( ExtractAxis )
27    macro( ZoomDomain )
28    macro( InterpolateDomain )
29    macro( GenerateRectilinearDomain )
30    macro( Scalar )
31    macro( ReduceAxisToScalar )
32    macro( ReduceDomainToAxis )
33    macro( ReduceAxisToAxis )
34    macro( ExtractDomainToAxis )
35    macro( ComputeConnectivityDomain )
36    macro( ExpandDomain )
37    macro( ExtractAxisToScalar )
38    macro( ReduceDomainToScalar )
39    macro( TemporalSplitting )
40    macro( DuplicateScalarToAxis )
41    macro( ReduceScalarToScalar )
42    macro( ReorderDomain )
43    macro( ExtractDomain )
44  }
45}
Note: See TracBrowser for help on using the repository browser.