00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef SAMPLERECOG_H
00012 #define SAMPLERECOG_H
00013
00014
00015 #include <apmrec.h>
00016
00017
00018 const TInt KRecognizerExImplementationUid = 0x101FF1ed;
00019
00024 class CApaRecognizerEx: public CApaDataRecognizerType
00025 {
00026 public:
00027
00028 CApaRecognizerEx();
00029 virtual ~CApaRecognizerEx();
00030
00031
00032 static CApaDataRecognizerType* CreateRecognizerL();
00033
00034
00035 TUint PreferredBufSize();
00036
00037
00038 TDataType SupportedDataTypeL(TInt aIndex) const;
00039
00040 private:
00041
00042 void DoRecognizeL(const TDesC& aName, const TDesC8& aBuffer);
00043 };
00044
00045 #endif //SAMPLERECOG_H