www.pudn.com > UIQ_Code1.rar > CommandsDocument.h
// CommandsDocument.h // // © Symbian Software Ltd 2005. All rights reserved. // #ifndef COMMANDSDOCUMENT_H #define COMMANDSDOCUMENT_H #includeclass CQikApplication; /** This class represents the document in commands application, */ class CCommandsDocument : public CQikDocument { public: static CCommandsDocument* NewL(CQikApplication& aApp); ~CCommandsDocument(); private: // from CQikDocument CEikAppUi* CreateAppUiL(); CCommandsDocument(CQikApplication& aApp); void ConstructL(); }; #endif // COMMANDSDOCUMENT_H