aboutsummaryrefslogtreecommitdiff
path: root/src/IsoSurfacerInit.h
blob: 6cde6f398bea1a01f361d38aaacd6cdc5f3d8384 (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
#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 (cGH *GH);
int IsoSurfacer_ParseIsoString(char *isostring,cGH *GH,isosurfacerGH *myGH);
int IsoSurfacer_TriggerOutput (cGH *GH, int);
int IsoSurfacer_TimeForOutput (cGH *GH, int);

#endif