deviceencryption/DevEncUi/inc/DevEncUiFileManager.h
branchRCL_3
changeset 38 491b3ed49290
parent 36 95243422089a
child 39 65326cf895ed
--- a/deviceencryption/DevEncUi/inc/DevEncUiFileManager.h	Thu Aug 19 09:42:45 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,58 +0,0 @@
-/*
-* 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_*/