Initialisierung.h 320 B

123456789101112
  1. #ifndef Initialisierung_H
  2. #define Initialisierung_H
  3. #include <Knopf.h>
  4. #include <TextFeld.h>
  5. using namespace Framework;
  6. Knopf *initKnopf( int x, int y, int br, int hö, Schrift *zSchrift, int style, char *titel );
  7. TextFeld *initTextFeld( int x, int y, int br, int hö, Schrift *zSchrift, int style, char *txt );
  8. #endif