diff options
author | Wim van Aarle <wimvanaarle@gmail.com> | 2015-02-25 16:46:09 +0100 |
---|---|---|
committer | Wim van Aarle <wimvanaarle@gmail.com> | 2015-02-25 16:46:09 +0100 |
commit | 065d9c6a18f2b8eececc608ce850a9a308ca6356 (patch) | |
tree | 38ced94765ba77e2b710cd66fb4826f55f52250c /include/astra/Config.h | |
parent | 9adc99793653c92d369bb2710b51c3c1a554b362 (diff) | |
download | astra-065d9c6a18f2b8eececc608ce850a9a308ca6356.tar.gz astra-065d9c6a18f2b8eececc608ce850a9a308ca6356.tar.bz2 astra-065d9c6a18f2b8eececc608ce850a9a308ca6356.tar.xz astra-065d9c6a18f2b8eececc608ce850a9a308ca6356.zip |
get_geometry now uses XML config object (for volumes)
Diffstat (limited to 'include/astra/Config.h')
-rw-r--r-- | include/astra/Config.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/astra/Config.h b/include/astra/Config.h index 647462b..9893c90 100644 --- a/include/astra/Config.h +++ b/include/astra/Config.h @@ -31,6 +31,7 @@ $Id$ #include "Globals.h" #include "XMLNode.h" +#include "XMLDocument.h" #include <set> @@ -46,6 +47,8 @@ struct _AstraExport Config { Config(XMLNode* _self); ~Config(); + void initialize(std::string rootname); + XMLNode* self; XMLNode* global; }; |