dosservices/tsrc/public/basic/dosservertestplugin/inc/Ctfdosshareddatatc.h
changeset 0 4e1aa6a622a0
equal deleted inserted replaced
-1:000000000000 0:4e1aa6a622a0
       
     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:  Header file for .
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef __CTFDOSSHAREDDATATC_H__
       
    20 #define __CTFDOSSHAREDDATATC_H__
       
    21 
       
    22 // INCLUDES
       
    23 #include <badesca.h>
       
    24 #include <f32file.h>
       
    25 
       
    26 NONSHARABLE_CLASS(CSdDisk) : public CBase 
       
    27 {
       
    28 
       
    29 public:
       
    30 	
       
    31 	static CSdDisk* NewL();
       
    32 	void ConstructL();
       
    33 	
       
    34 	CSdDisk();
       
    35 	~CSdDisk(); 
       
    36 	
       
    37 	void FillDisk(RFs& aFs, TInt& aFreeDiskSpaceToLeave);
       
    38 	TReal64 CheckDiskSpace(RFs& aFs);
       
    39 	TInt CheckReserveFileSize(RFs& aFs);
       
    40 	void ReleaseDisk(RFs& aFs);
       
    41 
       
    42 private:
       
    43 	
       
    44 
       
    45 };
       
    46 
       
    47 
       
    48 #endif