emailservices/emailstore/tsrc/bufferedmsgcreator_test/inc/containerstoreutils.h
changeset 1 12c456ceeff2
equal deleted inserted replaced
0:8466d47a6819 1:12c456ceeff2
       
     1 /*
       
     2 * Copyright (c) 2006 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:  Mockup Container store utils.
       
    15 *
       
    16 */
       
    17 #ifndef CONTAINERSTOREUTILS_H
       
    18 #define CONTAINERSTOREUTILS_H
       
    19 
       
    20 
       
    21 /**
       
    22  * 
       
    23  */
       
    24 NONSHARABLE_CLASS( CContainerStoreUtils ) :
       
    25     public CBase
       
    26     
       
    27 	{
       
    28 public:
       
    29     
       
    30     static CContainerStoreUtils* NewL();
       
    31     
       
    32     void ConstructL();
       
    33     
       
    34     CContainerStoreUtils();
       
    35     
       
    36     ~CContainerStoreUtils();
       
    37     
       
    38     const TDesC& PrivatePath() const;
       
    39     
       
    40     RFs& FileSystem();
       
    41     
       
    42     void LeaveIfLowDiskSpaceL( TUint aBytesToWrite );
       
    43     
       
    44 public:    
       
    45     RFs iFs;
       
    46     RBuf iPrivatePath;
       
    47 	};
       
    48 
       
    49 	
       
    50 #endif // CONTAINERSTOREUTILS_H