dbgsrv/coredumpserver/plugins/writers/file/test/filewritertestserver.h
changeset 0 c6b0df440bee
equal deleted inserted replaced
-1:000000000000 0:c6b0df440bee
       
     1 /**
       
     2 * Copyright (c) 2007-2009 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:
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 /**
       
    22  @file filewritertestserver.h
       
    23  @file
       
    24  @internalTechnology
       
    25  @released
       
    26 */
       
    27 
       
    28 // __EDIT_ME__ Create your own class definition based on this
       
    29 #ifndef __FILE_WRITER_TEST_SERVER_H__
       
    30 #define __FILE_WRITER_TEST_SERVER_H__
       
    31 
       
    32 #include <TestExecuteServerBase.h>
       
    33 
       
    34 class CFileWriterTestServer  : public CTestServer
       
    35 	{
       
    36 public:
       
    37 	static CFileWriterTestServer* NewL();
       
    38 	virtual CTestStep* CreateTestStep(const TDesC& aStepName);
       
    39 	RFs& Fs(){return iFs;};
       
    40 
       
    41 private:
       
    42 	RFs iFs;
       
    43 	};
       
    44 
       
    45 #endif // __FILE_WRITER_TEST_SERVER_H__
       
    46