aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetLib/src/dgdata.cc
diff options
context:
space:
mode:
authorschnetter <>2001-06-12 12:56:00 +0000
committerschnetter <>2001-06-12 12:56:00 +0000
commit8867059a4180017e191773894b66fc36521168b9 (patch)
tree27cc2b6bbfdf277b797d883a5770679de6dcff05 /Carpet/CarpetLib/src/dgdata.cc
parent2de5b11b0a7bfb67d2ac1be8b74edcd024698617 (diff)
Introduced abstraction classes that have no <dim> parameter. This
Introduced abstraction classes that have no <dim> parameter. This will make it easier to adapte the driver to support multiple dimensions at once. darcs-hash:20010612125655-07bb3-1cba35eb867eca1234b3a40bd7a5641b64776c50.gz
Diffstat (limited to 'Carpet/CarpetLib/src/dgdata.cc')
-rw-r--r--Carpet/CarpetLib/src/dgdata.cc42
1 files changed, 42 insertions, 0 deletions
diff --git a/Carpet/CarpetLib/src/dgdata.cc b/Carpet/CarpetLib/src/dgdata.cc
new file mode 100644
index 000000000..36771e8de
--- /dev/null
+++ b/Carpet/CarpetLib/src/dgdata.cc
@@ -0,0 +1,42 @@
+/***************************************************************************
+ dgdata.cc - description
+ -------------------
+ begin : Wed Jul 19 2000
+ copyright : (C) 2000 by Erik Schnetter
+ email : schnetter@astro.psu.edu
+
+ $Header: /home/eschnett/C/carpet/Carpet/Carpet/CarpetLib/src/Attic/dgdata.cc,v 1.1 2001/06/12 14:56:57 schnetter Exp $
+
+ ***************************************************************************/
+
+/***************************************************************************
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ ***************************************************************************/
+
+#include <assert.h>
+
+#if !defined(TMPL_IMPLICIT) || !defined(GDATA_HH)
+# include "dgdata.hh"
+#endif
+
+using namespace std;
+
+
+
+// Constructors
+dimgeneric_data::dimgeneric_data ()
+ : _has_storage(false)
+{ }
+
+// Destructors
+dimgeneric_data::~dimgeneric_data () { }
+
+
+
+#if defined(TMPL_EXPLICIT)
+#endif