BIOexampleParser.h
上传用户:sempras
上传日期:2007-03-04
资源大小:821k
文件大小:1k
源码类别:

Symbian

开发平台:

C/C++

  1. /*
  2.         BIOexampleParser.H - header file for BIOexampleParser
  3.         C++ implementation
  4.         Class CBIOexampleParser defines a parser for specified BIO messages.
  5. */
  6. #if !defined(__BIOEXAMPLEPARSER_H__)
  7. #define __BIOEXAMPLEPARSER_H__
  8. // INCLUDES
  9. #include <bsp.h>
  10. #include <msventry.h>
  11. // FORWARD DECLARATIONS
  12. // CLASSES
  13. class CBIOexampleParser : public CBaseScriptParser
  14. {
  15. public:
  16. IMPORT_C static CBIOexampleParser* NewL(CRegisteredParserDll& aRegisteredParserDll, CMsvServerEntry& aEntry, RFs& aFs);
  17. ~CBIOexampleParser();
  18. void ParseL(TRequestStatus& aStatus, const TDesC& aSms);
  19. void ProcessL(TRequestStatus& aStatus); 
  20. private:
  21.     void DoCancel();
  22.     void RunL();
  23.     CBIOexampleParser(CRegisteredParserDll& aRegisteredParserDll, CMsvServerEntry& aEntry, RFs& aFs);
  24.     void ConstructL();
  25. };
  26. #endif // __BIOEXAMPLEPARSER_H__
  27. //End of File