equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002 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: |
|
15 * |
|
16 */ |
|
17 |
|
18 #include "AknDoc.h" |
|
19 |
|
20 EXPORT_C CFileStore* CAknDocument::OpenFileL(TBool /*aDoOpen*/,const TDesC& /*aFilename*/,RFs& /*aFs*/) |
|
21 { |
|
22 return NULL; |
|
23 } |
|
24 |
|
25 EXPORT_C void CAknDocument::OpenFileL(CFileStore*& /*aFileStore*/, RFile& /*aFile*/) |
|
26 { |
|
27 // nothing |
|
28 } |
|
29 |
|
30 EXPORT_C CAknDocument::CAknDocument(CEikApplication& aApp) |
|
31 : CEikDocument(aApp) |
|
32 { |
|
33 } |
|
34 |