source: XIOS/dev/dev_ym/XIOS_COUPLING/src/group_factory_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: 2.1 KB
RevLine 
[352]1#include "group_factory_impl.hpp"
2#include "node_type.hpp"
3
4namespace xios
5{
6# define  macro(U) \
[1542]7  template void CGroupFactory::AddGroup<U>(std::shared_ptr<U> pgroup, std::shared_ptr<U> cgroup); \
8  template void CGroupFactory::AddChild<U>(std::shared_ptr<U> group, std::shared_ptr<U::RelChild> child); \
9  template std::shared_ptr<U>  CGroupFactory::GetGroup<U>(std::shared_ptr<U> group, const StdString & id); \
10  template std::shared_ptr<U::RelChild> CGroupFactory::GetChild<U>( std::shared_ptr<U> group, const StdString & id); \
11  template int CGroupFactory::GetGroupNum<U>(std::shared_ptr<U> group); \
12  template int CGroupFactory::GetGroupIdNum<U>(std::shared_ptr<U> group); \
13  template int CGroupFactory::GetChildNum<U>(std::shared_ptr<U> group); \
14  template int CGroupFactory::GetChildIdNum<U>(std::shared_ptr<U> group); \
15  template bool CGroupFactory::HasGroup<U>(std::shared_ptr<U> group, const StdString & id); \
16  template bool CGroupFactory::HasChild<U>(std::shared_ptr<U> group, const StdString & id); \
17  template std::shared_ptr<U> CGroupFactory::CreateGroup<U>(std::shared_ptr<U> group, const StdString & id ); \
18  template std::shared_ptr<U::RelChild>  CGroupFactory::CreateChild<U>(std::shared_ptr<U> group, const StdString & id);
[352]19
20  macro(CFieldGroup)
21  macro(CFileGroup)
[1782]22  macro(CCouplerInGroup)
23  macro(CCouplerOutGroup)
[352]24  macro(CGridGroup)
25  macro(CAxisGroup)
26  macro(CDomainGroup)
27  macro(CContextGroup)
28  macro(CVariableGroup)
[621]29  macro(CInverseAxisGroup)
30  macro(CZoomAxisGroup)
[630]31  macro(CInterpolateAxisGroup)
[1558]32  macro(CExtractAxisGroup)
[631]33  macro(CZoomDomainGroup)
[689]34  macro(CInterpolateDomainGroup)
[687]35  macro(CGenerateRectilinearDomainGroup)
[887]36  macro(CScalarGroup)
[888]37  macro(CReduceAxisToScalarGroup)
[895]38  macro(CReduceDomainToAxisGroup)
[1301]39  macro(CReduceAxisToAxisGroup)
[895]40  macro(CExtractDomainToAxisGroup)
[934]41  macro(CComputeConnectivityDomainGroup)
[935]42  macro(CExpandDomainGroup)
[960]43  macro(CExtractAxisToScalarGroup)
[976]44  macro(CReduceDomainToScalarGroup)
[1275]45  macro(CTemporalSplittingGroup)
[1314]46  macro(CDuplicateScalarToAxisGroup)
47  macro(CReduceScalarToScalarGroup)
[1457]48  macro(CReorderDomainGroup)
[1549]49  macro(CExtractDomainGroup)
[352]50}
Note: See TracBrowser for help on using the repository browser.