home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1997 April
/
Chip_1997-04_cd.bin
/
prezent
/
cb
/
data.z
/
HOMEMOD.H
< prev
next >
Wrap
C/C++ Source or Header
|
1997-01-16
|
1KB
|
36 lines
//----------------------------------------------------------------------------
//Borland C++ Builder
//Copyright (c) 1987 Borland International Inc. All Rights Reserved.
//----------------------------------------------------------------------------
//---------------------------------------------------------------------------
#ifndef HomeModH
#define HomeModH
//---------------------------------------------------------------------------
#include <windows.hpp>
#include <messages.hpp>
#include <sysutils.hpp>
#include <classes.hpp>
#include <graphics.hpp>
#include <controls.hpp>
#include <forms.hpp>
#include <dialogs.hpp>
#include <extctrls.hpp>
#include <stdctrls.hpp>
#include <basemod.h>
//---------------------------------------------------------------------------
class THome : public TBase
{
__published:
TButton *Button2;
TButton *Button3;
void __fastcall Button3Click(TObject *Sender);
void __fastcall Button2Click(TObject *Sender);
private: // private user declarations
public: // public user declarations
virtual __fastcall THome(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern THome *Home;
//---------------------------------------------------------------------------
#endif