aboutsummaryrefslogtreecommitdiff
path: root/src/Output.c
diff options
context:
space:
mode:
authortradke <tradke@0888f3d4-9f52-45d2-93bc-d00801ff5e46>2001-11-05 15:11:04 +0000
committertradke <tradke@0888f3d4-9f52-45d2-93bc-d00801ff5e46>2001-11-05 15:11:04 +0000
commit7c000ad32564b357b1dbe66da09e5eb663f904ab (patch)
tree8121ee21bc45a405d076b10c3b75299bcb0b6961 /src/Output.c
parent3075b57c3ee364e456ad950b66d05f893fd78547 (diff)
Added const qualifier to the 'cGH *' argument of some more IO functions.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOStreamedHDF5/trunk@75 0888f3d4-9f52-45d2-93bc-d00801ff5e46
Diffstat (limited to 'src/Output.c')
-rw-r--r--src/Output.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/Output.c b/src/Output.c
index cf2174c..828e8e1 100644
--- a/src/Output.c
+++ b/src/Output.c
@@ -38,11 +38,11 @@ static void CheckSteerableParameters (ioStreamedHDF5GH *myGH);
@var GH
@vdesc Pointer to CCTK GH
- @vtype cGH *
+ @vtype const cGH *
@vio in
@endvar
@@*/
-int IOStreamedHDF5_OutputGH (cGH *GH)
+int IOStreamedHDF5_OutputGH (const cGH *GH)
{
DECLARE_CCTK_PARAMETERS
int vindex;
@@ -104,7 +104,7 @@ int IOStreamedHDF5_OutputGH (cGH *GH)
@var GH
@vdesc Pointer to CCTK GH
- @vtype cGH *
+ @vtype const cGH *
@vio in
@endvar
@var fullname
@@ -119,7 +119,7 @@ int IOStreamedHDF5_OutputGH (cGH *GH)
@vio in
@endvar
@@*/
-int IOStreamedHDF5_OutputVarAs (cGH *GH,
+int IOStreamedHDF5_OutputVarAs (const cGH *GH,
const char *fullname,
const char *alias)
{
@@ -156,7 +156,7 @@ int IOStreamedHDF5_OutputVarAs (cGH *GH,
@var GH
@vdesc Pointer to CCTK GH
- @vtype cGH *
+ @vtype const cGH *
@vio in
@endvar
@var vindex
@@ -171,7 +171,7 @@ int IOStreamedHDF5_OutputVarAs (cGH *GH,
0 if not
@endreturndesc
@@*/
-int IOStreamedHDF5_TimeFor (cGH *GH,
+int IOStreamedHDF5_TimeFor (const cGH *GH,
int vindex)
{
ioStreamedHDF5GH *myGH;
@@ -218,7 +218,7 @@ int IOStreamedHDF5_TimeFor (cGH *GH,
@var GH
@vdesc Pointer to CCTK GH
- @vtype cGH *
+ @vtype const cGH *
@vio in
@endvar
@var vindex
@@ -227,7 +227,7 @@ int IOStreamedHDF5_TimeFor (cGH *GH,
@vio in
@endvar
@@*/
-int IOStreamedHDF5_TriggerOutput (cGH *GH,
+int IOStreamedHDF5_TriggerOutput (const cGH *GH,
int vindex)
{
DECLARE_CCTK_PARAMETERS