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

  1. // PdfDataRecognizer.h
  2. //
  3. // Copyright (c) 1997-1999 Symbian Ltd.  All rights reserved.
  4. //
  5. // Copyright (c) 1999 Sander van der Wal.
  6. //
  7. #ifndef __PDFDATARECOGNIZER_H__
  8. #define __PDFDATARECOGNIZER_H__
  9.  
  10. // $Id: Pdfdatarecognizer.h 1.1 2000-09-17 15:08:14+02 svdwal Exp svdwal $
  11.  
  12. // AppArc
  13. #ifndef __APMREC_H__
  14. #include <apmrec.h> 
  15. #endif
  16.  
  17. class CPdfDataRecognizer : public CApaDataRecognizerType
  18. {
  19. public: 
  20.     CPdfDataRecognizer();
  21.  
  22. // -- CApaDataRecognizerType
  23. public:
  24.   TUint PreferredBufSize();
  25.     TDataType SupportedDataTypeL(TInt aIndex) const;
  26. private:
  27.     void DoRecognizeL(const TDesC& aName, const TDesC8& aBuffer);
  28. };
  29.  
  30. #endif