00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #if !defined(__EXAMPLERECOGNIZER_H__)
00017 #define __EXAMPLERECOGNIZER_H__
00018
00019 #if !defined(__APMREC_H__)
00020 #include <apmrec.h>
00021 #endif
00022
00023
00024
00025
00026
00027
00028 class CExampleNewRecognizer: public CApaDataRecognizerType
00029 {
00030 public:
00031 CExampleNewRecognizer();
00032 TUint PreferredBufSize();
00033 TDataType SupportedDataTypeL(TInt) const;
00034 static CApaDataRecognizerType* CreateRecognizerL();
00035 private:
00036 void DoRecognizeL(const TDesC&, const TDesC8&);
00037 };
00038
00039 #endif
00040
00041