/* Machine-made version of this file copyright (c) 2005 Somusar */ /* Derived from samples that are Copyright (c) 2004, Nokia. All rights reserved */ #ifndef __TWOFORMSAPPUI_H__ #define __TWOFORMSAPPUI_H__ // INCLUDES #include // CLASS DECLARATION /** * Application UI class. * Provides support for the following features: * - EIKON control architecture * - view architecture * - status pane */ class CTwoFormsAppUi : public CAknViewAppUi { public: // Constructors and destructor /** * Default constructor. */ CTwoFormsAppUi(); /** * Symbian constructor. */ void ConstructL(); /** * Destructor. */ virtual ~CTwoFormsAppUi(); private: // From CEikAppUi /** * From CEikAppUi, HandleCommandL. * Handles the commands. * @param aCommand Command to be handled */ void HandleCommandL( TInt aCommand ); }; #endif // __TWOFORMSAPPUI_H__ // End of File