source: XIOS/dev/branch_openmp/src/group_factory_decl.cpp @ 1460

Last change on this file since 1460 was 1460, checked in by yushan, 6 years ago

branch_openmp merged with XIOS_DEV_CMIP6@1459

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