home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #3 / Amiga Plus CD - 2002 - No. 03.iso / AmiSoft / Dev / Gui / Cit.lha / CIT / citra / CITString.h < prev    next >
Encoding:
C/C++ Source or Header  |  2003-02-13  |  509 b   |  36 lines

  1. //
  2. //                    CITString include
  3. //
  4. //                          StormC
  5. //
  6. //                     version 2003.02.11
  7. //
  8.  
  9. #ifndef CITSTRING_H
  10. #define CITSTRING_H TRUE
  11.  
  12. #include "CITInput.h"
  13.  
  14. class CITString:public CITInput
  15. {
  16.   public:
  17.     CITString();
  18.     ~CITString();
  19.  
  20.     void  TextVal(char* text);
  21.     char* TextVal();
  22.     
  23.   protected:
  24.     virtual Object* NewObjectA(TagItem* tags);
  25.     
  26.   private:
  27.     TagItem* stringTag;
  28. };
  29.  
  30. enum
  31. {
  32.   STRINGCLASS_FLAGBITUSED = INPUTCLASS_FLAGBITUSED
  33. };
  34.  
  35. #endif
  36.