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 BASETESTFAT32LARGER512_H |
|
17 #define BASETESTFAT32LARGER512_H |
|
18 |
|
19 |
|
20 #include "basetestfat32base.h" |
|
21 #include <f32file.h> |
|
22 #include <e32math.h> |
|
23 |
|
24 typedef enum |
|
25 { |
|
26 ETRUE, |
|
27 EFALSE |
|
28 }TBOOL; |
|
29 |
|
30 /** |
|
31 Fat32 Larger512 Class. Inherits from the base class. |
|
32 Ensures that FAT32 is only implemented for disk sizes greater or equal to 512MB |
|
33 */ |
|
34 class CBaseTestFat32Larger512 : public CBaseTestFat32Base |
|
35 { |
|
36 public: |
|
37 CBaseTestFat32Larger512 (); |
|
38 virtual ~CBaseTestFat32Larger512 (); |
|
39 virtual TVerdict doTestStepL(); |
|
40 |
|
41 protected: |
|
42 |
|
43 }; |
|
44 |
|
45 _LIT(KTestStepLarger512, "Larger512"); |
|
46 |
|
47 #endif // BASETESTFAT32LARGER512_H |