aboutsummaryrefslogtreecommitdiff
path: root/Carpet/Carpet/src/carpet.hh
diff options
context:
space:
mode:
authorschnetter <>2002-08-30 16:08:00 +0000
committerschnetter <>2002-08-30 16:08:00 +0000
commit8fee9425f9dbb1940202680408b42fbf47357066 (patch)
tree28cf394ef02f1b45ff1a593ddf6704a59ea07281 /Carpet/Carpet/src/carpet.hh
parent2395b6276562a01507194ed024bd9a1bb5c02287 (diff)
Removed file-scope static function declarations in CarpetIOASCII,
Removed file-scope static function declarations in CarpetIOASCII, because a modern IBM C++ compiler had problems with this deprecated feature of C++. Using a namespace instead. darcs-hash:20020830160852-07bb3-23b772154bffa09c2c36df6ec55c56aaf6669db6.gz
Diffstat (limited to 'Carpet/Carpet/src/carpet.hh')
-rw-r--r--Carpet/Carpet/src/carpet.hh9
1 files changed, 8 insertions, 1 deletions
diff --git a/Carpet/Carpet/src/carpet.hh b/Carpet/Carpet/src/carpet.hh
index 4e08cdc4f..04e97a04a 100644
--- a/Carpet/Carpet/src/carpet.hh
+++ b/Carpet/Carpet/src/carpet.hh
@@ -1,9 +1,14 @@
-// $Header: /home/eschnett/C/carpet/Carpet/Carpet/Carpet/src/carpet.hh,v 1.18 2002/07/18 14:32:47 shawley Exp $
+// $Header: /home/eschnett/C/carpet/Carpet/Carpet/Carpet/src/carpet.hh,v 1.19 2002/08/30 18:08:52 schnetter Exp $
+
+#ifndef CARPET_HH
+#define CARPET_HH
#include "Carpet/CarpetLib/src/gh.hh"
#include "carpet_public.hh"
+
+
namespace Carpet {
void Regrid (const cGH* cgh);
@@ -42,3 +47,5 @@ namespace Carpet {
void UnsupportedVarType (int vindex);
} // namespace Carpet
+
+#endif // ! defined(CARPET_HH)