aboutsummaryrefslogtreecommitdiff
path: root/src/iobasicGH.h
diff options
context:
space:
mode:
authortradke <tradke@b589c3ab-70e8-4b4d-a09f-cba2dd200880>2003-03-10 11:09:54 +0000
committertradke <tradke@b589c3ab-70e8-4b4d-a09f-cba2dd200880>2003-03-10 11:09:54 +0000
commitc22176e9d190d0d2c5bfec8891a5a8292f6b0226 (patch)
tree34b6794a0a7684c72fa4b4b4539d14dab8cbf746 /src/iobasicGH.h
parentffc3726120bcc38a5495f248f040b571a650f4ea (diff)
Added routine IOBasic_OutputVarAs() for unconditional output of variables
using the "Scalar" I/O method. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@141 b589c3ab-70e8-4b4d-a09f-cba2dd200880
Diffstat (limited to 'src/iobasicGH.h')
-rw-r--r--src/iobasicGH.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/iobasicGH.h b/src/iobasicGH.h
index 573ccdf..a77cb0c 100644
--- a/src/iobasicGH.h
+++ b/src/iobasicGH.h
@@ -5,9 +5,12 @@
@desc
The extensions to the GH structure from IOBasic.
@enddesc
- @version $Header$
+ @version $Header$
@@*/
+#ifndef _IOBASIC_IOBASICGH_H_
+#define _IOBASIC_IOBASICGH_H_ 1
+
#include "StoreNamedData.h"
@@ -55,6 +58,7 @@ typedef struct IOBASIC_GH
/* prototypes of functions to be registered */
int IOBasic_InfoOutputGH (const cGH *GH);
+int IOBasic_OutputVarAs (const cGH *GH, const char *fullname,const char *alias);
int IOBasic_TriggerInfoOutput (const cGH *GH, int vindex);
int IOBasic_TimeForInfoOutput (const cGH *GH, int vindex);
int IOBasic_ScalarOutputGH (const cGH *GH);
@@ -65,3 +69,5 @@ int IOBasic_TimeForScalarOutput (const cGH *GH, int vindex);
void IOBasic_AssignReductionList (int vindex, const char *optstring, void *arg);
int IOBasic_WriteInfo (const cGH *GH, int vindex);
int IOBasic_WriteScalar (const cGH *GH, int vindex, const char *alias);
+
+#endif /* _IOBASIC_IOBASICGH_H_ */