source: XIOS/trunk/src/generate_interface_decl.cpp @ 470

Last change on this file since 470 was 352, checked in by ymipsl, 12 years ago
  • Property svn:eol-style set to native
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.