diff -r 25fce757be94 -r e02eb84a14d2 usbuis/usbui/inc/USBClassChangeUIAppUi.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/usbuis/usbui/inc/USBClassChangeUIAppUi.h Wed Sep 01 12:20:49 2010 +0100 @@ -0,0 +1,82 @@ +/* +* Copyright (c) 2005, 2006 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: Declares UI class for application. +* +*/ + + +#ifndef USBCLASSCHANGEUIAPPUI_H +#define USBCLASSCHANGEUIAPPUI_H + +// INCLUDES +#include +#include + + +// FORWARD DECLARATIONS +class CUSBClassChangeUIView; +class CUSBClassChangeUIModel; + +// CLASS DECLARATION + +/** +* AppUI class. +* +* @lib +* @since Series 60 3.0 +*/ +class CUSBClassChangeUIAppUi : public CAknViewAppUi + { + public: // Constructors and destructor + + /** + * Symbian 2nd phase constructor. + */ + void ConstructL(); + + /** + * Destructor + */ + virtual ~CUSBClassChangeUIAppUi(); + + public: // Functions from base classes + + /** + * From CAknViewAppUi Handles user commands. + * + * @param aCommand A command id. + * @return None. + */ + void HandleCommandL(TInt aCommand); + + public: // New functions + + + + private: // New functions + + /** + * Handles the "No USB mode active" state in startup. + * @since Series 60 3.0 + * @param None. + * @return None. + */ + void NoUSBModeActiveL(); + + private: // Data + }; + +#endif + +// End of File