summaryrefslogtreecommitdiff
path: root/src/main/make.code.defn
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-02-04 09:27:42 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-02-04 09:27:42 +0000
commitaaa78240ef7409f27bfadf3916d095eb0007bfa9 (patch)
tree7141af89a69c40a9beee5bc4ee60f320f9862b74 /src/main/make.code.defn
parent4ec2152e21ddce9f873f6d1d4beb0b5b9bec3c41 (diff)
Rationalised the overloading of functions. Goodbye RegisterKeyedFunction,
hello Overloadable ! Now each subdirectory has one header file (in the include dir) which defines the overloadable functions. Macros are then applied to the header file to produce functions of the form CCTK_OverloadFoo(... (*func)(...)) to overload the function, and to create prototypes, dummy functions, and if statements which can be used to assign dummy (or other default) functions to any overloadable function which hasn't been assigned. The resulting functions have names of the form CCTK_Foo() As a byproduct of this the communication layer should work, 'though it's all dummy functions there at the moment, but at least you can call the functions. I've put OutputGH and OutputGroup in the IO layer, but can't remember precisely what we had decided as the canonical set of overloadable functions for IO. Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@206 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/make.code.defn')
-rw-r--r--src/main/make.code.defn5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/main/make.code.defn b/src/main/make.code.defn
index 7e85d542..1a73c8ca 100644
--- a/src/main/make.code.defn
+++ b/src/main/make.code.defn
@@ -13,7 +13,6 @@ InitialiseDataStructures.c\
ProcessCommandLine.c\
ProcessParameterDatabase.c\
RecordImplementation.c\
-RegisterMainFunction.c\
RegisterThorn.c\
SetParams.c\
ShutdownCactus.c\
@@ -22,6 +21,6 @@ flesh.cc\
Groups.c\
Variables.c\
Dummies.c\
-rfrInterface.c
-
+rfrInterface.c\
+Overload.c