X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=include%2Fimagefile.h;h=ef60d3ddebf39f26a92ae2352c6ae9a6828b4009;hp=c5a68e726b3073a950c3006d68e8e0b8a4666968;hb=3e346e67f7f7a331919a32439b0f54a4d53d3029;hpb=949b7c917af311cd38f911bc5d0af36f524a6086 diff --git a/include/imagefile.h b/include/imagefile.h index c5a68e7..ef60d3d 100644 --- a/include/imagefile.h +++ b/include/imagefile.h @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: imagefile.h,v 1.15 2000/06/26 21:15:24 kevin Exp $ +** $Id: imagefile.h,v 1.16 2000/06/28 15:25:34 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -61,7 +61,7 @@ public: kfloat32** getArray (void) { return (kfloat32**) (m_arrayData); } - const kfloat32** getArray (void) const + const kfloat32* const * getArray (void) const { return (const kfloat32**) (m_arrayData); } #ifdef HAVE_MPI @@ -94,7 +94,7 @@ class F64Image : public Array2dFile kfloat64** getArray (void) { return (kfloat64**) (m_arrayData); } - const kfloat64** getArray (void) const + const kfloat64* const * getArray (void) const { return (const kfloat64**) (m_arrayData); } #ifdef HAVE_MPI @@ -112,11 +112,13 @@ typedef F64Image ImageFileBase; typedef kfloat64 ImageFileValue; typedef kfloat64* ImageFileColumn; typedef kfloat64** ImageFileArray; +typedef const kfloat64* const * ImageFileArrayConst; #else typedef F32Image ImageFileBase; typedef kfloat32 ImageFileValue; typedef kfloat32* ImageFileColumn; typedef kfloat32** ImageFileArray; +typedef const kfloat32* const * ImageFileArrayConst; #endif