home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
borland
/
cb
/
setup
/
cbuilder
/
data.z
/
AUTO2.H
< prev
next >
Wrap
C/C++ Source or Header
|
1997-02-28
|
1KB
|
32 lines
//----------------------------------------------------------------------------
//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