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