New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
xml_parser_decl.cpp in vendors/XIOS/current/src – NEMO

source: vendors/XIOS/current/src/xml_parser_decl.cpp @ 3428

Last change on this file since 3428 was 3428, checked in by rblod, 12 years ago

importing initial XIOS vendor drop

File size: 685 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
10
11namespace xios
12{
13  namespace xml
14  {
15    template void CXMLParser::ParseInclude<CContext>(StdIStream & stream, CContext& object) ;
16 
17 #   define macro(T) \
18    template void CXMLParser::ParseInclude< CGroupTemplate<C##T, C##T##Group, C##T##Attributes> >(StdIStream & stream, 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  }
28}
Note: See TracBrowser for help on using the repository browser.