VideoChat.h 574 B

123456789101112131415161718192021222324252627282930313233
  1. #ifndef VideoChat_H
  2. #define VideoChat_H
  3. #include <TextFeld.h>
  4. using namespace Framework;
  5. class VideoChat
  6. {
  7. private:
  8. TextFeld *verlauf;
  9. int ref;
  10. public:
  11. // Konstruktor
  12. VideoChat( Schrift *zSchrift );
  13. // Destruktor
  14. ~VideoChat();
  15. // nicht constant
  16. void addNachricht( char *nachricht );
  17. void addNachricht( char *nachricht, int farbe );
  18. void removeNachricht( char *nachricht );
  19. void doMausEreignis( MausEreignis &me );
  20. void tick( double z );
  21. void render( Bild &zRObj );
  22. // constant
  23. // Reference Counting
  24. VideoChat *getThis();
  25. VideoChat *relese();
  26. };
  27. #endif