|
1 /* |
|
2 * Copyright (c) 2007-2009 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 * Name : CopyDateFile.h |
|
16 * Declaration for CopyDateFile |
|
17 * Redistribution and use in source and binary forms, with or without |
|
18 * modification, are permitted provided that the following conditions are met: |
|
19 * Redistributions of source code must retain the above copyright notice, this |
|
20 * list of conditions and the following disclaimer. |
|
21 * Redistributions in binary form must reproduce the above copyright notice, |
|
22 * this list of conditions and the following disclaimer in the documentation |
|
23 * and/or other materials provided with the distribution. |
|
24 * Neither the name of the <ORGANIZATION> nor the names of its contributors |
|
25 * may be used to endorse or promote products derived from this software |
|
26 * without specific prior written permission. |
|
27 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
|
28 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
|
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
|
30 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE |
|
31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
|
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
|
33 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
|
34 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
|
35 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
|
36 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
37 * |
|
38 * |
|
39 */ |
|
40 |
|
41 |
|
42 |
|
43 #ifndef __COPYDATAFILE__H |
|
44 #define __COPYDATAFILE__H |
|
45 |
|
46 #include <f32file.h> |
|
47 #include <e32std.h> |
|
48 |
|
49 /** |
|
50 Deals with the copying of the data from private to public directories and viceversa. |
|
51 |
|
52 @publishedAll |
|
53 @released |
|
54 */ |
|
55 |
|
56 class CopyDataFile |
|
57 { |
|
58 public: |
|
59 static TInt CopyToPrivateL(TDesC& aFileName); |
|
60 static TInt CopyToPublicL(TDesC& aFileName); |
|
61 |
|
62 protected: |
|
63 |
|
64 private: |
|
65 }; |
|
66 |
|
67 #endif //__COPYDATAFILE__H |
|
68 |
|
69 |