home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------------------
- #ifndef Auto2H
- #define Auto2H
- //----------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <OleAuto.hpp>
- #include <System.hpp>
- //----------------------------------------------------------------------------
- class ButtonServer : public TAutoObject
- {
- private:
- String __fastcall GetEditStr();
- void __fastcall SetEditStr(String NewVal);
- int __fastcall GetEditNum();
- void __fastcall SetEditNum(int NewVal);
-
- __automated:
- __property String EditStr = {read=GetEditStr, write=SetEditStr};
- __property int EditNum = {read=GetEditNum, write=SetEditNum};
- void __fastcall Clear();
- void __fastcall SetThreeStr(String s1, String s2, String s3);
- void __fastcall SetThreeNum(int n1, int n2, int n3);
- public:
- __fastcall ButtonServer();
- };
- //----------------------------------------------------------------------------
- #endif
-