home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool_main.zip / ool / include / XFILEFI.H < prev    next >
Text File  |  1997-08-19  |  1KB  |  33 lines

  1. #ifndef __OOL_XFILEFIND_H__
  2. #define __OOL_XFILEFIND_H__
  3.  
  4. /*===========================================================================*/
  5. /* OOL ------------------- the Open Object Library ------------------- r 1.0 */
  6. /*===========================================================================*/
  7. /*                              class: XFileFind                             */
  8. /*                       derived from: XObject                               */
  9. /*                        last update: 8/97                                  */
  10. /*                      programmed by: Stefan von Brauk (sbrauk@gwdg.de)     */
  11. /*===========================================================================*/
  12.  
  13. #include "xstring.h"
  14. #include "xobject.h"
  15.  
  16.  
  17. class XString;
  18. class XFileInfo;
  19.  
  20. class _export_ XFileFind: public XObject
  21. {
  22.    private:
  23.       HDIR dir;
  24.       XString mask;
  25.       BOOL init;
  26.    public:
  27.       XFileFind( const char * file);
  28.       ~XFileFind();
  29.       BOOL Find( XString *, XFileInfo *);
  30. };
  31.  
  32. #endif
  33.