aboutsummaryrefslogtreecommitdiff
path: root/src/patch/patch.hh
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2001-06-20 15:17:21 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2001-06-20 15:17:21 +0000
commitaefc0a12df8e6278f0c8123b5bf0a1ce26c53f06 (patch)
tree260d868f169033eea8823b5f54318924b778f9e5 /src/patch/patch.hh
parenta69d290cccc5f60a872555b243c9aa3822c429b8 (diff)
remove enum patch_system_type since it belongs in class patch_system::
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@85 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/patch/patch.hh')
-rw-r--r--src/patch/patch.hh29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/patch/patch.hh b/src/patch/patch.hh
index 5b5256c..c76d10d 100644
--- a/src/patch/patch.hh
+++ b/src/patch/patch.hh
@@ -8,8 +8,6 @@
// x_patch - derived class for a +/- x patch
// y_patch - derived class for a +/- y patch
//
-// enum patch_system_type - what types of patch systems exist
-//
//
// prerequisites:
@@ -676,30 +674,3 @@ private:
y_patch(const y_patch& rhs);
y_patch& operator=(const y_patch& rhs);
};
-
-//*****************************************************************************
-//*****************************************************************************
-// stuff that belongs in "patch_system.hh"
-//*****************************************************************************
-//*****************************************************************************
-
-//
-// FIXME:
-// The following enum belongs in "patch_system.hh", but that causes
-// problems with "io.hh" needing it as well. As a quick-n-dirty hack,
-// we put it here, so both header files (and their classes) have access
-// to it.
-//
-
-//
-// The following patch-system types are supported:
-//
-// If any of these are changed, corresponding changes must
-// be made in other places in the code; these places are all
-// marked with comments
-// note PATCH_NUMBERS_CHANGE
-// -- must change this if namespace patch_numbers:: changes
-// so searching for the string PATCH_NUMBERS_CHANGE will find
-// them all.
-//
-enum patch_system_type { octant, quarter, half, full };