00001
00002
00003
00004
00005 #ifndef SMSEXAMPLEPARSER_H
00006 #define SMSEXAMPLEPARSER_H
00007
00008
00009 #include <e32base.h>
00010
00014 class CSMSExampleParser: public CBase
00015 {
00016 public:
00017
00023 IMPORT_C static CSMSExampleParser* NewL();
00024
00028 IMPORT_C ~CSMSExampleParser(void);
00029
00037 IMPORT_C TBool ParseMessage(const TDesC& aMessage, TDes& aNumber);
00038
00039 private:
00040
00044 void ConstructL();
00045
00046 private:
00047
00051 CSMSExampleParser(void);
00052
00053 };
00054
00055 #endif