1
0

Mandel.h 501 B

123456789101112131415161718192021222324252627282930313233
  1. #ifndef MANDEL_MANDEL_H
  2. #define MANDEL_MANDEL_H
  3. #include <vector>
  4. #include <memory>
  5. #include "MandelUtil.h"
  6. #include "Generators.h"
  7. namespace mnd
  8. {
  9. class MandelContext;
  10. struct MandelViewport;
  11. struct MandelInfo;
  12. extern MandelContext initializeContext(void);
  13. }
  14. class mnd::MandelContext
  15. {
  16. private:
  17. friend MandelContext initializeContext(void);
  18. std::vector<std::unique_ptr<Generator>> generators;
  19. MandelContext(void) = default;
  20. public:
  21. };
  22. #endif // MANDEL_MANDEL_H