IterationFormula.h 499 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #ifndef MANDEL_ITERATIONFORMULA_H
  2. #define MANDEL_ITERATIONFORMULA_H
  3. namespace mnd
  4. {
  5. struct IterationFormula;
  6. struct Addition;
  7. struct Multiplication;
  8. struct Division;
  9. struct Pow;
  10. }
  11. struct mnd::IterationFormula
  12. {
  13. };
  14. struct mnd::Addition : IterationFormula
  15. {
  16. bool subtraction = false;
  17. };
  18. struct mnd::Multiplication : IterationFormula
  19. {
  20. };
  21. struct mnd::Division : IterationFormula
  22. {
  23. };
  24. struct mnd::Pow : IterationFormula
  25. {
  26. };
  27. #endif // MANDEL_ITERATIONFORMULA_H