equal
deleted
inserted
replaced
|
1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of the License "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 #ifndef BASETESTFAT32MOUNT_H |
|
17 #define BASETESTFAT32MOUNT_H |
|
18 |
|
19 #include <testexecutestepbase.h> |
|
20 #include <testexecuteserverbase.h> |
|
21 #include "basetestfat32base.h" |
|
22 |
|
23 /** |
|
24 Fat32 Mount Class. Inherits from the base class. |
|
25 Contains functions needed to mount the file system |
|
26 */ |
|
27 class CBaseTestFat32Mount : public CBaseTestFat32Base |
|
28 { |
|
29 public: |
|
30 CBaseTestFat32Mount(); |
|
31 ~CBaseTestFat32Mount(); |
|
32 virtual TVerdict doTestStepL(); |
|
33 protected: |
|
34 |
|
35 |
|
36 }; |
|
37 |
|
38 _LIT(KTestStepMount, "Mount"); |
|
39 |
|
40 #endif // BASETESTFAT32MOUNT_H |