multimediacommsengine/tsrc/testdriver/testclient/filehandler/inc/CTcFileHandler.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/multimediacommsengine/tsrc/testdriver/testclient/filehandler/inc/CTcFileHandler.h Tue Feb 02 01:04:58 2010 +0200
@@ -0,0 +1,60 @@
+/*
+* Copyright (c) 2004 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: See class definition below.
+*
+*/
+
+#ifndef __CTCFILEHANDLER_H__
+#define __CTCFILEHANDLER_H__
+
+// INCLUDES
+#include <e32base.h>
+#include "RTcFileHandler.h"
+
+// CLASS DEFINITION
+//
+class CTcFileHandler : public CBase
+ {
+ public: // Constructors and destructor
+
+ /// Static constructor.
+ IMPORT_C static CTcFileHandler* NewL();
+
+ /// Destructor
+ IMPORT_C ~CTcFileHandler();
+
+ IMPORT_C void CreateFileL( const TDesC8& aDestinationPath,
+ const TDesC8& aData );
+
+ IMPORT_C void CopyFileL( const TDesC8& aSourcePath,
+ const TDesC8& aDestiantionPath );
+
+ IMPORT_C void DeleteFileL( const TDesC8& aDestinationPath );
+
+ private: // Constructors
+
+ /// Default constructor.
+ CTcFileHandler();
+
+ // Second phase constructor
+ void ConstructL();
+
+ private: // Data
+
+ /// FileHandler client. Owned.
+ RTcFileHandler iHandler;
+
+ };
+
+#endif // __CTCFILEHANDLER_H__