aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@38c3d835-c875-442e-b0fe-21c19ce1d001>2004-04-24 14:48:17 +0000
committertradke <tradke@38c3d835-c875-442e-b0fe-21c19ce1d001>2004-04-24 14:48:17 +0000
commitacd994c227c4967aafcfa06b0a0778a17b58111c (patch)
tree56d5e6cc376a7bf57fff06cace9da729893f3ccd
parent46f63660a46bb7aa48722ff02ee490cc588456a9 (diff)
IOPanda doesn't need to inherit from Hyperslab anymore.
Instead it REQUIRES the hyperslab functions to be provided. In configuration.ccl, IOPanda now REQUIRES IOUtil rather than inheriting from IO. git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOPanda/trunk@62 38c3d835-c875-442e-b0fe-21c19ce1d001
-rw-r--r--configuration.ccl2
-rw-r--r--interface.ccl7
2 files changed, 4 insertions, 5 deletions
diff --git a/configuration.ccl b/configuration.ccl
index 7d10643..60dc23b 100644
--- a/configuration.ccl
+++ b/configuration.ccl
@@ -1,4 +1,4 @@
# Configuration definitions for thorn IOPanda
# $Header$
-REQUIRES PUGH FlexIO
+REQUIRES PUGH FlexIO IOUtil
diff --git a/interface.ccl b/interface.ccl
index 9c1c735..7754bd3 100644
--- a/interface.ccl
+++ b/interface.ccl
@@ -2,7 +2,6 @@
# $Header$
Implements: IOPanda
-Inherits: IO Hyperslab
CCTK_INT FUNCTION \
@@ -38,6 +37,6 @@ CCTK_INT FUNCTION \
CCTK_INT FUNCTION Hyperslab_FreeMapping (CCTK_INT IN mapping_handle)
-USES FUNCTION Hyperslab_Get
-USES FUNCTION Hyperslab_LocalMappingByIndex
-USES FUNCTION Hyperslab_FreeMapping
+REQUIRES FUNCTION Hyperslab_Get
+REQUIRES FUNCTION Hyperslab_LocalMappingByIndex
+REQUIRES FUNCTION Hyperslab_FreeMapping