#ifndef HANDLEHTML_H
#define HANDLEHTML_H
// INCLUDES
#include <e32base.h>
#include <e32cmn.h>
#include <utf.h>
#include <f32file.h> //Link against efsrv.lib
#include <xml\contenthandler.h> // for MContentHandler
#include <xml\parser.h> // for CParser
#include <coecontrolarray.h> // for CCoeControlArray
#include <Avkon.hrh>
#include "GridView.h"
sing namespace Xml;
class MHandleHtmlObserver
{
public:
virtual void OnParseHtmlCompleted(TInt aError) = 0;//,TInt
};
class CHandleHtmlublic MContentHandler
{
public:
~CHandleHtml();
static CHandleHtml* NewL(MHandleHtmlObserver& aObserver);
static CHandleHtml* NewLC(MHandleHtmlObserver& aObserver);
private:
CHandleHtml(MHandleHtmlObserver& aObserver);
void ConstructL();
private:
。。。。
private:
。。。。
CGridView* iParent; // 这出问题
public:
// Private data
MHandleHtmlObserver& iObserver;
CParser* iParser;
HBufC8* iBuffer;
RArray<TInt>iCurrentLabelPosition;
。。。。。
};
CGridView* iParent; 提示
Multiple markers at this line
- expected `;' before '*' token
- ISO C++ forbids declaration of `CGridView' with no type
这是什么原因那

ublic MContentHandler
Reply With Quote

