www.pudn.com > Example2D.rar > Example2DDocument.h
/* * ============================================================================ * Name : CExample2DDocument from Example2DDocument.h * Part of : Example2D * Created : 23.09.2005 by * Description: * Declares document for application. * Version : * Copyright: * ============================================================================ */ #ifndef EXAMPLE2DDOCUMENT_H #define EXAMPLE2DDOCUMENT_H // INCLUDES #include// CONSTANTS // FORWARD DECLARATIONS class CEikAppUi; class CEikApplication; // CLASS DECLARATION /** * CExample2DDocument application class. */ class CExample2DDocument : public CEikDocument { public: // Constructors and destructor static CExample2DDocument* NewL(CEikApplication& aApp); virtual ~CExample2DDocument(); private: CExample2DDocument(CEikApplication& aApp); void ConstructL(); private: CEikAppUi* CreateAppUiL(); }; #endif // End of file