home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / tvision / vlstde / demondx.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-12  |  379 b   |  19 lines

  1. // demondx.hpp            DATABASE INDEX SELECTOR DIALOG BOX
  2. //    written by Gregory K. Miskin
  3. //    COPYRIGHT (C) 1992.  All Rights Reserved.
  4. //    Gregory K. Miskin, Orem, Utah  USA
  5.  
  6. #ifndef _demondx_hpp
  7. #define _demondx_hpp
  8.  
  9. class TSelectIndex : public TDialog
  10. {
  11. public:
  12.      TSelectIndex();
  13.      virtual void handleEvent(TEvent& event);
  14.  
  15. protected:
  16.     TButton        *okbutton;
  17. };
  18. #endif
  19.