ExportRecipe.cpp 326 B

12345678910111213141516171819
  1. #include "ExportRecipe.h"
  2. #include "tinyxml2.h"
  3. #include "XmlException.h"
  4. using alm::ImageExportRecipe;
  5. using alm::XmlException;
  6. std::string ImageExportRecipe::toXml(void) const
  7. {
  8. }
  9. ImageExportRecipe ImageExportRecipe::fromXml(const std::string& xml)
  10. {
  11. tinyxml2::XMLDocument xmlDoc;
  12. xmlDoc.Parse(xml.c_str());
  13. }