1 | #include "object_factory_impl.hpp" |
---|
2 | #include "node_type.hpp" |
---|
3 | |
---|
4 | namespace xios |
---|
5 | { |
---|
6 | #define macro(U) \ |
---|
7 | template shared_ptr<U> CObjectFactory::GetObject<U>(const StdString& id); \ |
---|
8 | template shared_ptr<U> CObjectFactory::GetObject<U>(const StdString& context,const StdString& id); \ |
---|
9 | template shared_ptr<U> CObjectFactory::GetObject<U>(const U* const object); \ |
---|
10 | template int CObjectFactory::GetObjectNum<U>(void); \ |
---|
11 | template int CObjectFactory::GetObjectIdNum<U>(void); \ |
---|
12 | template const std::vector<shared_ptr<U> >& CObjectFactory::GetObjectVector<U>(const StdString& context ); \ |
---|
13 | template bool CObjectFactory::HasObject<U>(const StdString& id); \ |
---|
14 | template bool CObjectFactory::HasObject<U>(const StdString& context,const StdString& id); \ |
---|
15 | template boost::shared_ptr<U> CObjectFactory::CreateObject<U>(const StdString& id ); \ |
---|
16 | template const StdString& CObjectFactory::GetUIdBase<U>(void); \ |
---|
17 | template StdString CObjectFactory::GenUId<U>(void); \ |
---|
18 | template bool CObjectFactory::IsGenUId<U>(const StdString& id); \ |
---|
19 | |
---|
20 | macro(CField) |
---|
21 | macro(CFile) |
---|
22 | macro(CGrid) |
---|
23 | macro(CAxis) |
---|
24 | macro(CDomain) |
---|
25 | macro(CContext) |
---|
26 | macro(CCalendarWrapper) |
---|
27 | macro(CVariable) |
---|
28 | macro(CInverseAxis) |
---|
29 | macro(CZoomAxis) |
---|
30 | macro(CInterpolateAxis) |
---|
31 | macro(CZoomDomain) |
---|
32 | macro(CInterpolateDomain) |
---|
33 | macro(CGenerateRectilinearDomain) |
---|
34 | macro(CScalar) |
---|
35 | macro(CReduceAxisToScalar) |
---|
36 | macro(CReduceDomainToAxis) |
---|
37 | macro(CExtractDomainToAxis) |
---|
38 | macro(CComputeConnectivityDomain) |
---|
39 | macro(CExpandDomain) |
---|
40 | macro(CExtractAxisToScalar) |
---|
41 | |
---|
42 | macro(CFieldGroup) |
---|
43 | macro(CFileGroup) |
---|
44 | macro(CGridGroup) |
---|
45 | macro(CAxisGroup) |
---|
46 | macro(CDomainGroup) |
---|
47 | macro(CContextGroup) |
---|
48 | macro(CVariableGroup) |
---|
49 | macro(CInverseAxisGroup) |
---|
50 | macro(CZoomAxisGroup) |
---|
51 | macro(CInterpolateAxisGroup) |
---|
52 | macro(CZoomDomainGroup) |
---|
53 | macro(CInterpolateDomainGroup) |
---|
54 | macro(CGenerateRectilinearDomainGroup) |
---|
55 | macro(CScalarGroup) |
---|
56 | macro(CReduceAxisToScalarGroup) |
---|
57 | macro(CReduceDomainToAxisGroup) |
---|
58 | macro(CExtractDomainToAxisGroup) |
---|
59 | macro(CComputeConnectivityDomainGroup) |
---|
60 | macro(CExpandDomainGroup) |
---|
61 | macro(CExtractAxisToScalarGroup) |
---|
62 | } |
---|