|
1 /* |
|
2 * Copyright (c) {Year(s)} {Copyright owner}. |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of the "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * {Name} {Company} ? Initial contribution |
|
11 * |
|
12 * Contributors: |
|
13 * {Name} {Company} ? {{Description of contribution}} |
|
14 * |
|
15 * Description: |
|
16 * {{Description of the file}} |
|
17 * |
|
18 */ |
|
19 |
|
20 // INCLUDE FILES |
|
21 #include "TestPublisher.hrh" |
|
22 #include "TestPublisherDocument.h" |
|
23 #include "TestPublisherApplication.h" |
|
24 |
|
25 // ============================ MEMBER FUNCTIONS =============================== |
|
26 |
|
27 // ----------------------------------------------------------------------------- |
|
28 // CTestPublisherApplication::CreateDocumentL() |
|
29 // Creates CApaDocument object |
|
30 // ----------------------------------------------------------------------------- |
|
31 // |
|
32 CApaDocument* CTestPublisherApplication::CreateDocumentL() |
|
33 { |
|
34 // Create an TestPublisher document, and return a pointer to it |
|
35 return CTestPublisherDocument::NewL(*this); |
|
36 } |
|
37 |
|
38 // ----------------------------------------------------------------------------- |
|
39 // CTestPublisherApplication::AppDllUid() |
|
40 // Returns application UID |
|
41 // ----------------------------------------------------------------------------- |
|
42 // |
|
43 TUid CTestPublisherApplication::AppDllUid() const |
|
44 { |
|
45 // Return the UID for the TestPublisher application |
|
46 return KUidTestPublisherApp; |
|
47 } |
|
48 |
|
49 // End of File |