00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #if !defined(__BIOEXAMPLEPARSER_H__)
00017 #define __BIOEXAMPLEPARSER_H__
00018
00019
00020 #include <bsp.h>
00021 #include <msventry.h>
00022
00023
00024 class CBIOExampleParser : public CBaseScriptParser2
00025 {
00026 public:
00027 IMPORT_C static CBIOExampleParser* NewL(CRegisteredParserDll& aRegisteredParserDll, CMsvEntry& aEntry, RFs& aFs);
00028 ~CBIOExampleParser();
00029 void ParseL(TRequestStatus& aStatus, const TDesC& aSms);
00030 void ProcessL(TRequestStatus& aStatus);
00031
00032 private:
00033 void DoCancel();
00034 void RunL();
00035
00036 CBIOExampleParser(CRegisteredParserDll& aRegisteredParserDll, CMsvEntry& aEntry, RFs& aFs);
00037 void ConstructL();
00038 };
00039
00040 #endif