summaryrefslogtreecommitdiff
path: root/src/include/cctk_ActiveThorns.h
blob: 9b16d27a0a05444309bd15002f30236f656722f3 (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
35
36
37
38
39
40
41
42
43
44
45
46
 /*@@
   @header    ActiveThorns.h
   @date      Sun Jul  4 17:39:50 1999
   @author    Tom Goodale
   @desc 
   
   @enddesc
   @version $Header$
 @@*/

#ifndef __ACTIVETHORNS_H_
#define __ACTIVETHORNS_H_

#include <stdio.h>
#include "SKBinTree.h"   

#ifdef __cplusplus 
extern "C" {
#endif

int CCTKi_RegisterThorn(const char *name, const char *imp);
int CCTKi_ActivateThorn(const char *name);
int CCTK_IsThornActive(const char *name);
int CCTK_IsThornCompiled(const char *name);
int CCTK_IsImplementationActive(const char *name);
int CCTKi_ListThorns(FILE *file, const char *format, int active);
int CCTKi_ListImplementations(FILE *file, const char *format, int active);
const char *CCTK_ActivatingThorn(const char *imp);

/* FIXME - should return a list or something */
t_sktree *CCTK_ImpThornList (const char *imp);

/* public routines to get information about thorns and imps */
int CCTK_ImplementationList   (int active,      char ***list, int *n_implementations);
int CCTK_ImplementationThornList (const char *imp, char ***list, int *n_thorns);
int CCTK_ThornList(int active, char ***list, int *n_items);

const char *CCTK_ThornImplementation(const char *name);
const char *CCTK_ImplementationThorn(const char *name);


#ifdef __cplusplus 
}
#endif

#endif /* _ACTIVETHORNS_H_ */