source: XIOS/dev/dev_olga/src/object_factory_decl_macro.hpp @ 1595

Last change on this file since 1595 was 1595, checked in by oabramkina, 5 years ago

Backporting r1591 and r1592 to dev.

File size: 1.0 KB
Line 
1#include "object_factory_impl.hpp"
2#include "node_type.hpp"
3
4
5#define macro(U) \
6  template std::shared_ptr<U> CObjectFactory::GetObject<U>(const StdString& id);  \
7  template std::shared_ptr<U> CObjectFactory::GetObject<U>(const StdString& context,const StdString& id); \
8  template std::shared_ptr<U> CObjectFactory::GetObject<U>(const U* const object); \
9  template int CObjectFactory::GetObjectNum<U>(void); \
10  template int CObjectFactory::GetObjectIdNum<U>(void); \
11  template const std::vector<std::shared_ptr<U> >& CObjectFactory::GetObjectVector<U>(const StdString& context ); \
12  template bool CObjectFactory::HasObject<U>(const StdString& id); \
13  template bool CObjectFactory::HasObject<U>(const StdString& context,const StdString& id); \
14  template std::shared_ptr<U> CObjectFactory::CreateObject<U>(const StdString& id ); \
15  template const StdString& CObjectFactory::GetUIdBase<U>(void); \
16  template StdString CObjectFactory::GenUId<U>(void); \
17  template bool CObjectFactory::IsGenUId<U>(const StdString& id);
18
19
Note: See TracBrowser for help on using the repository browser.