ElmerFoamFSI  2.0
ElmerFoamFSI is fluid-solid interaction simulation application built up from OpenFOAM CFD and Elmer CSM coupled through the IMPACT multiphysics software integration infrastructure.
 All Classes Namespaces Files Functions Variables Typedefs Enumerator Macros Groups Pages
ModTestObject.f90
Go to the documentation of this file.
1 MODULE testobject
2 
3  TYPE t_global
4  CHARACTER(80) :: window_name
5  CHARACTER(80) :: other_window_name
6  CHARACTER(80) :: c_window_name
7  INTEGER :: other_window_handle
8  INTEGER :: c_window_handle
9  END TYPE t_global
10 
11  CONTAINS
12  SUBROUTINE associate_pointer( attr, ptr)
13  TYPE(t_global), POINTER :: attr, ptr
14  ptr => attr
15  END SUBROUTINE associate_pointer
16 
17 END MODULE testobject
subroutine associate_pointer(attr, ptr)