home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
borland
/
cb
/
setup
/
cbuilder
/
data.z
/
TERMMOD.H
< prev
next >
Wrap
C/C++ Source or Header
|
1997-02-28
|
1KB
|
36 lines
//----------------------------------------------------------------------------
//Borland C++Builder
//Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
//----------------------------------------------------------------------------
//---------------------------------------------------------------------------
#ifndef TermModH
#define TermModH
//---------------------------------------------------------------------------
#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 <dbgrids.hpp>
#include <grids.hpp>
#include <custmod.h>
//---------------------------------------------------------------------------
class TTerm : public TCust
{
__published:
void __fastcall FilterToggleClick(TObject *Sender);
void __fastcall FilterTextChange(TObject *Sender);
private: // private user declarations
public: // public user declarations
virtual __fastcall TTerm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern TTerm *Term;
//---------------------------------------------------------------------------
#endif