summaryrefslogtreecommitdiff
path: root/src/include/cctk_Version.h
blob: efe1ee59b26b0a90ce2cc6c256e5948aa827de1f (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
 /*@@
   @header    cctk_Version.h
   @date      Fri Dec 15 18:44:56 2000
   @author    Tom Goodale
   @desc 
   Version info about this Cactus
   @enddesc
   @version $Header$
 @@*/

#ifndef _CCTK_VERSION_H_
#define _CCTK_VERSION_H_ 1

#ifdef __cplusplus
extern "C" 
{
#endif

/* Version Stuff */
const char *CCTK_FullVersion(void);

const char *CCTK_MajorVersion(void);

const char *CCTK_MinorVersion(void);

const char *CCTK_MicroVersion(void);

/* Compile date and time stuff */

void CCTKi_DateStamp(void); 

const char *CCTK_CompileTime(void);

const char *CCTK_CompileDate(void);

const char *CCTK_CompileDateTime(void);

#ifdef __cplusplus
}
#endif

#endif /* _CCTK_VERSION_H_ */