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 document class.
- *
- */
- #ifndef __CAMERALITYDOCUMENT_H__
- #define __CAMERALITYDOCUMENT_H__
- // INCLUDES
- #include <akndoc.h>
- // FORWARD DECLARATIONS
- class CCameralityAppUi;
- class CEikApplication;
- // CLASS DECLARATION
- /*!
- * CCameralityDocument application class.
- * An instance of class CcameralityDocument is the Document part of the
- * AVKON application framework for the camerality example application.
- */
- class CCameralityDocument : public CAknDocument
- {
- public:
- // Constructors and destructor
- static CCameralityDocument* NewL(CEikApplication& aApp);
- static CCameralityDocument* NewLC(CEikApplication& aApp);
- virtual ~CCameralityDocument();
- public:
- // Functions from base classes
- CEikAppUi* CreateAppUiL();
- private:
- // Constructors
- void ConstructL();
- CCameralityDocument(CEikApplication& aApp);
- };
- #endif // __CAMERALITYDOCUMENT_H__
- // End of File
|