BilderV.h 288 B

123456789101112131415161718
  1. #ifndef BilderV_H
  2. #define BilderV_H
  3. #include <Text.h>
  4. #include <Bild.h>
  5. using namespace Framework;
  6. class BilderV
  7. {
  8. public:
  9. // nicht constant
  10. virtual Bild *get( const char *path ) = 0;
  11. virtual BilderV *getThis() = 0;
  12. virtual BilderV *release() = 0;
  13. };
  14. #endif