cameralityapplication.h 1.3 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 application class.
  15. *
  16. */
  17. #ifndef __CAMERALITYAPPLICATION_H__
  18. #define __CAMERALITYAPPLICATION_H__
  19. // INCLUDES
  20. #include <aknapp.h>
  21. #include "camerality.hrh"
  22. // CONSTANTS
  23. // UID for the application;
  24. // this should correspond to the uid defined in the mmp file
  25. const TUid KUidcameralityApp =
  26. {
  27. _UID3
  28. };
  29. // CLASS DECLARATION
  30. /**
  31. * CCameralityApplication application class.
  32. * Provides factory to create concrete document object.
  33. * An instance of CCameralityApplication is the application part of the
  34. * AVKON application framework for the camerality example application.
  35. */
  36. class CCameralityApplication : public CAknApplication
  37. {
  38. public:
  39. // Functions from base classes
  40. TUid AppDllUid() const;
  41. protected:
  42. // Functions from base classes
  43. CApaDocument* CreateDocumentL();
  44. };
  45. #endif // __CAMERALITYAPPLICATION_H__
  46. // End of File