1 /* Copyright (c) 2004, Nokia. All rights reserved */
2 
3 
4 #ifndef __OSMO4_H__
5 #define __OSMO4_H__
6 
7 // INCLUDES
8 #include <aknapp.h>
9 #include <akndoc.h>
10 
11 class COsmo4Application : public CAknApplication
12 {
13 public:
14 	TUid AppDllUid() const;
15 
16 protected:
17 	CApaDocument* CreateDocumentL();
18 };
19 
20 
21 class COsmo4Document : public CAknDocument
22 {
23 public:
24 	static COsmo4Document* NewL( CEikApplication& aApp );
25 	static COsmo4Document* NewLC( CEikApplication& aApp );
26 	virtual ~COsmo4Document();
27 
28 public:
29 	CEikAppUi* CreateAppUiL();
30 
31 private:
32 	void ConstructL();
33 	COsmo4Document( CEikApplication& aApp );
34 
35 };
36 
37 #endif // __OSMO4_H__
38 
39