ExportRecipe.h 418 B

1234567891011121314151617181920212223242526
  1. #pragma once
  2. #ifndef LIBALMOND_EXPORT_RECIPE_H
  3. #define LIBALMOND_EXPORT_RECIPE_H
  4. #include <MandelUtil.h>
  5. #include "Gradient.h"
  6. #include <string>
  7. namespace alm
  8. {
  9. struct ImageExportRecipe;
  10. }
  11. struct alm::ImageExportRecipe
  12. {
  13. mnd::MandelInfo view;
  14. Gradient gradient;
  15. std::string toXml(void) const;
  16. static ImageExportRecipe fromXml(const std::string& xml);
  17. };
  18. #endif // LIBALMOND_EXPORT_RECIPE_H