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

Last change on this file since 462 was 462, checked in by ymipsl, 10 years ago

Enhancement :

  • Improving error message occuring along the xml parsing : position (line number, column) is now indicated
  • New executable : parse_xml.exe : parse the xml files and reports potential error

YM

  • Property svn:eol-style set to native
File size: 729 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, 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  }
28}
Note: See TracBrowser for help on using the repository browser.