#ifndef AGDDMANAGERHH #define AGDDMANAGERHH #include //#include "ExpatInterface/Element.h" //#include "agddSection.hh" //#include "agddCompos.hh" //#include "agddPosXYZ.hh" //#include "agddMPosPhi.hh" //#include "agddSolid.hh" namespace agdd { class Manager { private: //xml::Document _doc; agdd::AGDD * _aGDD; public: Manager() : _aGDD() { //_doc->setTagName("AGDD76"); }; void makeDocument(Section * section) { section->putMeIn(_doc); }; void sendDocumentTo(ostream & os) { _doc->Element::print(os, ""); }; }; } // end of namespace #endif