home *** CD-ROM | disk | FTP | other *** search
/ PSION CD 2 / PsionCDVol2.iso / Programs / 720 / PDF090B4-SorceCode / filerec / PdfFileRecognizer.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-30  |  687 b   |  29 lines

  1. // PDFFileRecognizer.h
  2. //
  3. // Copyright (c) 2000 Sander van der Wal
  4.  
  5. #ifndef __PDFRECOG_H__
  6. #define __PDFRECOG_H__
  7.  
  8. // $Id: PdfFileRecognizer.h 1.1 2000-09-17 15:11:31+02 svdwal Exp svdwal $
  9.  
  10. #ifndef __APADEF_H__
  11. #include <apadef.h>
  12. #endif
  13. #ifndef __APAFLREC_H__
  14. #include <apaflrec.h>
  15. #endif
  16.  
  17. const TInt KUidPDFFileRecognizerValue = 0x10005EE8;
  18. const TUid KUidPDFFileRecognizer = {KUidPDFFileRecognizerValue};
  19.  
  20. class CPDFFileRecognizer : public CApaFileRecognizerType
  21. {
  22. public:
  23.   TThreadId RunL(TApaCommand aCommand, const TDesC* aDocFileName=0, const TDesC* aTailEnd=0) const;
  24.  
  25. private:
  26.   TRecognizedType DoRecognizeFileL(RFs& aFs, TUidType aType);
  27. };
  28.  
  29. #endif