www.pudn.com > Animation.rar > AnimationAppUi.h
#ifndef ANIMATIONAPPUI_H #define ANIMATIONAPPUI_H // INCLUDES // System includes #include// CAknViewAppUi // User includes #include "Animation.hrh" // FORWARD DECLARATIONS class CAnimationContainer; // CLASS DECLARATION /** * * @class CAnimationAppUi AnimationAppUi.h * @brief This is the main application UI class for the Animation example * * Copyright (c) EMCC Software Ltd 2003 * @version 1.0 * */ class CAnimationAppUi : public CAknAppUi { public: // Constructor and destructor void ConstructL(); ~CAnimationAppUi(); private: // from CEikAppUi void HandleCommandL(TInt aCommand); private: // data CAnimationContainer* iAnimContainer; }; #endif // #ifndef ANIMATIONAPPUI_H // End of File