aboutsummaryrefslogtreecommitdiff
path: root/src/cctk_FortranWrappers.F90
blob: ac69c26eeb4e1771bbf21dfc125e595325162e00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*@@
  @file    $RCSfile$
  @author  $Author$
  @date    $Date$
  @desc
           Fortran 90 interface declarations for the routines
           which have their C declarations in cctk_FortranWrappers.h
  @enddesc
  @version $Header$
@@*/

#include "cctk.h"

module cctk_FortranWrappers
  implicit none

  interface

     subroutine CCTK_RegisterFortranWrapper (ierr, name, function)
       implicit none
       integer       ierr
       character(*)  name
       CCTK_FPOINTER function
     end subroutine CCTK_RegisterFortranWrapper

     subroutine CCTK_FortranWrapper (function, name)
       implicit none
       CCTK_FPOINTER function
       character(*)  name
     end subroutine CCTK_FortranWrapper

  end interface

end module cctk_FortranWrappers