cameralitydocument.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. * Copyright (c) 2010-2011 Nokia Corporation and/or its subsidiary(-ies).
  3. * All rights reserved.
  4. * This component and the accompanying materials are made available
  5. * under the terms of "Eclipse Public License v1.0"
  6. * which accompanies this distribution, and is available
  7. * at the URL "http://www.eclipse.org/legal/epl-v10.html".
  8. *
  9. * Initial Contributors:
  10. * Nokia Corporation - initial contribution.
  11. *
  12. * Contributors:
  13. *
  14. * Description: Camerality document class.
  15. *
  16. */
  17. #ifndef __CAMERALITYDOCUMENT_H__
  18. #define __CAMERALITYDOCUMENT_H__
  19. // INCLUDES
  20. #include <akndoc.h>
  21. // FORWARD DECLARATIONS
  22. class CCameralityAppUi;
  23. class CEikApplication;
  24. // CLASS DECLARATION
  25. /*!
  26. * CCameralityDocument application class.
  27. * An instance of class CcameralityDocument is the Document part of the
  28. * AVKON application framework for the camerality example application.
  29. */
  30. class CCameralityDocument : public CAknDocument
  31. {
  32. public:
  33. // Constructors and destructor
  34. static CCameralityDocument* NewL(CEikApplication& aApp);
  35. static CCameralityDocument* NewLC(CEikApplication& aApp);
  36. virtual ~CCameralityDocument();
  37. public:
  38. // Functions from base classes
  39. CEikAppUi* CreateAppUiL();
  40. private:
  41. // Constructors
  42. void ConstructL();
  43. CCameralityDocument(CEikApplication& aApp);
  44. };
  45. #endif // __CAMERALITYDOCUMENT_H__
  46. // End of File