home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 9 / CDACTUAL9.iso / progs / CB / DATA.Z / AUTO2.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-17  |  984 b   |  28 lines

  1. //----------------------------------------------------------------------------
  2. #ifndef Auto2H
  3. #define Auto2H
  4. //----------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <OleAuto.hpp>
  7. #include <System.hpp>
  8. //----------------------------------------------------------------------------
  9. class ButtonServer : public TAutoObject
  10. {
  11. private: 
  12.     String __fastcall GetEditStr();
  13.     void __fastcall SetEditStr(String NewVal);
  14.     int __fastcall GetEditNum();
  15.     void __fastcall SetEditNum(int NewVal);
  16.     
  17. __automated:
  18.     __property String EditStr = {read=GetEditStr, write=SetEditStr};
  19.     __property int EditNum = {read=GetEditNum, write=SetEditNum};
  20.     void __fastcall Clear();
  21.     void __fastcall SetThreeStr(String s1, String s2, String s3);
  22.     void __fastcall SetThreeNum(int n1, int n2, int n3);
  23. public:
  24.     __fastcall ButtonServer();
  25. };
  26. //----------------------------------------------------------------------------
  27. #endif    
  28.