BIOexampleParser.h
上传用户:sempras
上传日期:2007-03-04
资源大小:821k
文件大小:1k
- /*
- BIOexampleParser.H - header file for BIOexampleParser
- C++ implementation
- Class CBIOexampleParser defines a parser for specified BIO messages.
- */
- #if !defined(__BIOEXAMPLEPARSER_H__)
- #define __BIOEXAMPLEPARSER_H__
- // INCLUDES
- #include <bsp.h>
- #include <msventry.h>
- // FORWARD DECLARATIONS
- // CLASSES
- class CBIOexampleParser : public CBaseScriptParser
- {
- public:
- IMPORT_C static CBIOexampleParser* NewL(CRegisteredParserDll& aRegisteredParserDll, CMsvServerEntry& aEntry, RFs& aFs);
- ~CBIOexampleParser();
- void ParseL(TRequestStatus& aStatus, const TDesC& aSms);
- void ProcessL(TRequestStatus& aStatus);
- private:
- void DoCancel();
- void RunL();
- CBIOexampleParser(CRegisteredParserDll& aRegisteredParserDll, CMsvServerEntry& aEntry, RFs& aFs);
- void ConstructL();
- };
- #endif // __BIOEXAMPLEPARSER_H__
- //End of File