1 // -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 // vi: set et ts=4 sw=2 sts=2:
3 /** \defgroup gm The Grid Manager
4  * \ingroup ug
5  */
6 /*! \file initgm.h
7  * \ingroup gm
8  */
9 
10 /****************************************************************************/
11 /*                                                                                                                                                      */
12 /* File:          initgm.h                                                                                                      */
13 /*                                                                                                                                                      */
14 /* Purpose:   call the init routines of the grid manager module                         */
15 /*                        (header file)                                                                                                 */
16 /*                                                                                                                                                      */
17 /* Author:        Henrik Rentz-Reichert                                                                                 */
18 /*                        Institut fuer Computeranwendungen III                                                 */
19 /*                        Universitaet Stuttgart                                                                                */
20 /*                        Pfaffenwaldring 27                                                                                    */
21 /*                        70569 Stuttgart                                                                                               */
22 /*                        email: ug@ica3.uni-stuttgart.de                                                           */
23 /*                                                                                                                                                      */
24 /* History:   27.02.95 begin, ug version 3.0                                                            */
25 /*                                                                                                                                                      */
26 /* Remarks:                                                                                                                             */
27 /*                                                                                                                                                      */
28 /****************************************************************************/
29 
30 
31 
32 #ifndef __INITGM__
33 #define __INITGM__
34 
35 #include <dune/uggrid/low/namespace.h>
36 #include <dune/uggrid/low/ugtypes.h>
37 
38 START_UGDIM_NAMESPACE
39 
40 /****************************************************************************/
41 /*                                                                          */
42 /* function declarations                                                    */
43 /*                                                                          */
44 /****************************************************************************/
45 
46 /* initialisation of the gm module */
47 INT InitGm ();
48 
49 /* Clean up of the gm module */
50 INT ExitGm ();
51 
52 END_UGDIM_NAMESPACE
53 
54 #endif
55