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

Last change on this file since 501 was 501, checked in by ymipsl, 10 years ago

Add licence copyright to all file ond directory src using the command :
svn propset -R copyright -F header_licence src

XIOS is now officialy under CeCILL licence

YM

  • 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: 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.