1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /*
- * Copyright (c) 2010-2011 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: Camerality application class.
- *
- */
- #ifndef __CAMERALITYAPPLICATION_H__
- #define __CAMERALITYAPPLICATION_H__
- // INCLUDES
- #include <aknapp.h>
- #include "camerality.hrh"
- // CONSTANTS
- // UID for the application;
- // this should correspond to the uid defined in the mmp file
- const TUid KUidcameralityApp =
- {
- _UID3
- };
- // CLASS DECLARATION
- /**
- * CCameralityApplication application class.
- * Provides factory to create concrete document object.
- * An instance of CCameralityApplication is the application part of the
- * AVKON application framework for the camerality example application.
- */
- class CCameralityApplication : public CAknApplication
- {
- public:
- // Functions from base classes
- TUid AppDllUid() const;
- protected:
- // Functions from base classes
- CApaDocument* CreateDocumentL();
- };
- #endif // __CAMERALITYAPPLICATION_H__
- // End of File
|