deviceencryption/DevEncUi/inc/DevEncUiFileManager.h
author Pat Downey <patd@symbian.org>
Wed, 01 Sep 2010 12:31:07 +0100
branchRCL_3
changeset 21 65326cf895ed
parent 0 6a9f87576119
permissions -rw-r--r--
Revert incorrect RCL_3 drop: Revision: 201033 Kit: 201035

/*
* Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0""
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  AppUi class of the application.
*
*/

#ifndef CDEVENCUIFILEMANAGER_H_
#define CDEVENCUIFILEMANAGER_H_

#include <e32base.h>
#include <f32file.h>

class CDir;
class CFileStore;
//class RFs;

class CDevEncUiFileManager : public CBase
    {
    public:
        virtual ~CDevEncUiFileManager();
        void ConstructL();
        
        void InteractiveKeySaveL( const TDesC8& aPkcs5Key );
        void InteractiveKeyLoadL( HBufC8*& aPkcs5Key );

        TInt OpenFileStore( const TDesC& aFilename,
                            CFileStore*& aStore );

        void SaveKeyL( CFileStore* aStore,
                const TDesC8& aPkcs5Key ) const;

        void LoadKeyL( const TFileName& aFileName,
                       HBufC8*& aPkcs5Key );

        void GetKeyListL( CDir*& aList );

        TInt DriveToChar( TInt aDrive, TChar &aChar );

        TInt KeyFolder( TDes& aResult );

        TInt RemountMmc();

    private:
        RFs iFs;
    };

#endif /*CDEVENCUIFILEMANAGER_H_*/