source: XIOS3/trunk/src/node/pool_node.cpp @ 2408

Last change on this file since 2408 was 2408, checked in by ymipsl, 21 months ago

Minimum requirement to introduce new nodes in XML tree
=> done for pool node (introducing service)
YM

  • Property svn:executable set to *
File size: 477 bytes
Line 
1#include "pool_node.hpp"
2
3namespace xios
4{
5 
6  CPoolNode::CPoolNode(void) : CObjectTemplate<CPoolNode>(), CPoolNodeAttributes()
7  { /* Ne rien faire de plus */ }
8
9  CPoolNode::CPoolNode(const StdString & id) : CObjectTemplate<CPoolNode>(id), CPoolNodeAttributes()
10  { /* Ne rien faire de plus */ }
11
12  CPoolNode::~CPoolNode(void)
13  { /* Ne rien faire de plus */ }
14
15
16  void CPoolNode::parse(xml::CXMLNode & node)
17  {
18    SuperClass::parse(node);
19  }
20
21
22}
23
Note: See TracBrowser for help on using the repository browser.