aboutsummaryrefslogtreecommitdiff
path: root/src/id.cc
diff options
context:
space:
mode:
authorschnetter <schnetter@83718e91-0e4f-0410-abf4-91180603181f>2008-02-03 19:09:41 +0000
committerschnetter <schnetter@83718e91-0e4f-0410-abf4-91180603181f>2008-02-03 19:09:41 +0000
commit3aada37ae6324b1acda7c5a1c10bc16534c0c2a3 (patch)
tree0f76c32c25640d1bbee5e1c064fc0e96bacd484c /src/id.cc
parent2878d1cbdcf4b2eb1f2f3b05a5d0991b7f9b6d17 (diff)
Provide aliased functions to query the source tree and configuration
ids git-svn-id: http://svn.cactuscode.org/arrangements/CactusUtils/Formaline/trunk@153 83718e91-0e4f-0410-abf4-91180603181f
Diffstat (limited to 'src/id.cc')
-rw-r--r--src/id.cc16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/id.cc b/src/id.cc
index 238f8eb..215870a 100644
--- a/src/id.cc
+++ b/src/id.cc
@@ -45,7 +45,7 @@ namespace Formaline
// Configuration ID
extern "C" char const config_id[];
- // Unique source ID
+ // Unique source tree ID
extern "C" char const source_id[];
// Unique build ID
@@ -201,6 +201,20 @@ namespace Formaline
extern "C" CCTK_POINTER_TO_CONST
+ Formaline_UniqueConfigID (CCTK_POINTER_TO_CONST const cctkGH_)
+ {
+ cGH const * const cctkGH = static_cast<cGH const *> (cctkGH_);
+ return static_cast<CCTK_POINTER_TO_CONST> (get_config_id (cctkGH));
+ }
+
+ extern "C" CCTK_POINTER_TO_CONST
+ Formaline_UniqueSourceID (CCTK_POINTER_TO_CONST const cctkGH_)
+ {
+ cGH const * const cctkGH = static_cast<cGH const *> (cctkGH_);
+ return static_cast<CCTK_POINTER_TO_CONST> (get_source_id (cctkGH));
+ }
+
+ extern "C" CCTK_POINTER_TO_CONST
Formaline_UniqueBuildID (CCTK_POINTER_TO_CONST const cctkGH_)
{
cGH const * const cctkGH = static_cast<cGH const *> (cctkGH_);