SpherePackingScenarioGenerator
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
XMLWriterWithXSD.h
Go to the documentation of this file.
00001 /*
00002  * XMLWriterWithXSD.h
00003  *
00004  *  Created on: May 22, 2011
00005  *      Author: tanlin
00006  */
00007 
00008 #ifndef XMLWRITERWITHXSD_H_
00009 #define XMLWRITERWITHXSD_H_
00010 #include <memory>   // std::auto_ptr
00011 #include <iostream>
00012 #include <fstream>
00013 #include<string>
00014 #include"configuration.hxx"
00015 namespace xmlwriter {
00016 
00017 class XMLWriterWithXSD {
00018 public:
00019         XMLWriterWithXSD();
00020         virtual ~XMLWriterWithXSD();
00021         void modifyXML(std::string filename);
00022 private:
00023         std::string _filename;
00024 };
00025 
00026 }
00027 
00028 #endif /* XMLWRITERWITHXSD_H_ */
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines