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 >
C/C++ Source or Header  |  1997-02-14  |  1KB  |  35 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef DataModH
  7. #define DataModH
  8. //---------------------------------------------------------------------------
  9. #include <windows.hpp>
  10. #include <messages.hpp>
  11. #include <sysutils.hpp>
  12. #include <classes.hpp>
  13. #include <graphics.hpp>
  14. #include <controls.hpp>
  15. #include <forms.hpp>
  16. #include <dialogs.hpp>
  17. #include <dbtables.hpp>
  18. #include <db.hpp>
  19. #include <custdata.h>
  20. //---------------------------------------------------------------------------
  21. class TData : public TCustomerData
  22. {
  23. __published:
  24.     void __fastcall OrdersFilterRecord(TDataSet *DataSet, bool &Accept);
  25.     void __fastcall CustomersFilterRecord(TDataSet *DataSet,
  26.       bool &Accept);
  27. private:        // private user declarations
  28. public:         // public user declarations
  29.     virtual __fastcall TData(TComponent* Owner);
  30. };
  31. //---------------------------------------------------------------------------
  32. extern TData *Data;
  33. //---------------------------------------------------------------------------
  34. #endif
  35.