home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1997 May
/
VPR9705A.ISO
/
VPR_DATA
/
PROGRAM
/
CBTRIAL
/
SETUP
/
DATA.Z
/
DATAMOD.H
< prev
next >
Wrap
C/C++ Source or Header
|
1997-02-14
|
1KB
|
35 lines
//----------------------------------------------------------------------------
//Borland C++Builder
//Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
//----------------------------------------------------------------------------
//---------------------------------------------------------------------------
#ifndef DataModH
#define DataModH
//---------------------------------------------------------------------------
#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 <dbtables.hpp>
#include <db.hpp>
#include <custdata.h>
//---------------------------------------------------------------------------
class TData : public TCustomerData
{
__published:
void __fastcall OrdersFilterRecord(TDataSet *DataSet, bool &Accept);
void __fastcall CustomersFilterRecord(TDataSet *DataSet,
bool &Accept);
private: // private user declarations
public: // public user declarations
virtual __fastcall TData(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern TData *Data;
//---------------------------------------------------------------------------
#endif