source: vendor/nemo/current/NEMOGCM/EXTERNAL/XIOS/src/generate_interface_decl.cpp @ 44

Last change on this file since 44 was 44, checked in by cholod, 12 years ago

Load NEMO_TMP into vendor/nemo/current.

File size: 1.1 KB
Line 
1#include "generate_interface_impl.hpp"
2
3namespace xios
4{
5
6#define macro(T) \
7  template void CInterface::AttributeCInterface<T>(ostream& oss,const string& className,const string& name) ; \
8  template void CInterface::AttributeFortran2003Interface<T>(ostream& oss,const string& className,const string& name) ; \
9  template void CInterface::AttributeFortranInterfaceDeclaration<T>(ostream& oss,const string& className,const string& name) ; \
10  template void CInterface::AttributeFortranInterfaceGetDeclaration<T>(ostream& oss,const string& className,const string& name) ; \
11  template void CInterface::AttributeFortranInterfaceBody<T>(ostream& oss,const string& className,const string& name) ; \
12  template void CInterface::AttributeFortranInterfaceGetBody<T>(ostream& oss,const string& className,const string& name) ; \
13  template string CInterface::getStrFortranType<T>(void) ; \
14  template string CInterface::getStrFortranKind<T>(void) ; \
15  template string CInterface::getStrFortranKindC<T>(void) ; \
16  template bool CInterface::matchingTypeCFortran<T>(void) ;
17 
18  macro(bool)
19  macro(int)
20  macro(double)
21}
Note: See TracBrowser for help on using the repository browser.