aboutsummaryrefslogtreecommitdiff
path: root/src/rdf.hh
diff options
context:
space:
mode:
authortradke <tradke@83718e91-0e4f-0410-abf4-91180603181f>2006-07-12 15:02:31 +0000
committertradke <tradke@83718e91-0e4f-0410-abf4-91180603181f>2006-07-12 15:02:31 +0000
commit3c1776f389b3d67db4bfd57d6b6a09bdff3392c4 (patch)
treec16a02ba32fa2f428085283366d3683673c0b30c /src/rdf.hh
parent7210330d8b4d3156db266b20e0eb2c5b0179a7f3 (diff)
Implemented update of RDF information during evolution and at termination.
Each update includes cctk_iteration, cctk_time, and the current datetime. The termination update is marked as such. git-svn-id: http://svn.cactuscode.org/arrangements/CactusUtils/Formaline/trunk@96 83718e91-0e4f-0410-abf4-91180603181f
Diffstat (limited to 'src/rdf.hh')
-rw-r--r--src/rdf.hh10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/rdf.hh b/src/rdf.hh
index 0534991..a4b965c 100644
--- a/src/rdf.hh
+++ b/src/rdf.hh
@@ -3,6 +3,8 @@
#ifndef FORMALINE_RDF_HH
#define FORMALINE_RDF_HH
+#include "cctk_Arguments.h"
+
#include <sstream>
#include <string>
@@ -23,7 +25,8 @@ namespace Formaline
public:
rdf (char const * id,
- enum state st);
+ enum state st,
+ CCTK_ARGUMENTS);
virtual
~ rdf ();
@@ -52,9 +55,8 @@ namespace Formaline
clean (std::string const & txt)
const;
- void Initial (const char* id);
- void Update (const char* id);
- void Final (const char* id);
+ void Initial (void);
+ void Update (CCTK_ARGUMENTS);
};