aboutsummaryrefslogtreecommitdiff
path: root/src/IsoSurfacerInit.h
blob: caedf79951b3545d3d98a2cdea55b28a72ea3885 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef _ISOSURFACERINIT_H
#define _ISOSURFACERINIT_H

#include <sys/types.h>

#ifndef _WIN32
#include <sys/times.h>
#else
#include <time.h>
#endif

#include <limits.h>
#include "IsoSurfacerGH.h"

/* prototypes of functions to be registered */
void *IsoSurfacer_SetupGH (tFleshConfig *config, int convergence_level,cGH *GH);
int IsoSurfacer_InitGH (cGH *GH);
int IsoSurfacer (const cGH *GH);
int IsoSurfacer_TriggerOutput (const cGH *GH, int);
int IsoSurfacer_TimeForOutput (const cGH *GH, int);

#endif