/* This file is part of StepCore library. Copyright (C) 2007 Vladimir Kuznetsov StepCore library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. StepCore library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with StepCore; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ /** \file xmlfile.h * \brief XmlFile class */ #ifndef STEPCORE_XMLFILE_H #define STEPCORE_XMLFILE_H #include class QIODevice; class QTextStream; namespace StepCore { class Object; class World; class Factory; /** \ingroup xmlfile * \brief Class for saving and loading World as XML file */ class XmlFile { public: /** Constructs XmlFile * \param device QIODevice to save or load file * \todo TODO don't pass factory here ! */ XmlFile(QIODevice* device): _device(device) {} /** Save world to XML file * \param world World to save * \return true on success, false on failure * (with error message in errorString()) */ bool save(const World* world); /** Load world from XML file * \param world World to which file should be loaded (should be empty) * \param factory Factory for creating new objects * \return true on success, false on failure * (with error message in errorString()) */ bool load(World* world, const Factory* factory); /** Get error message from last failed save() or load() */ QString errorString() const { return _errorString; } protected: QIODevice* _device; QString _errorString; public: static const char* DOCKTYPE; static const char* NAMESPACE_URI; static const char* VERSION; }; } #endif