commsfwutils/commsbufs/mbufgobblerlayer/te_mbufgobbler/inc/te_mbufgobblerserver.h
branchRCL_3
changeset 84 486e9e9c45a7
parent 76 576874e13a2c
child 85 7c25be0307fe
equal deleted inserted replaced
76:576874e13a2c 84:486e9e9c45a7
     1 // Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //  Test server
       
    15 //
       
    16 
       
    17 /**
       
    18  @file
       
    19  @internalComponent
       
    20 */
       
    21 
       
    22 #ifndef __MBUFGOBBLER_SERVER_H__
       
    23 #define __MBUFGOBBLER_SERVER_H__
       
    24 
       
    25 #include <test/testexecuteserverbase.h>
       
    26 
       
    27 enum
       
    28 	{
       
    29 	KTestWorkerStart	= 1,
       
    30 	};
       
    31 
       
    32 	
       
    33 class CMbufGobblerTestServer : public CTestServer
       
    34     {
       
    35 public:
       
    36     typedef CTestServer ParentClass;
       
    37     static CMbufGobblerTestServer* NewL();
       
    38     virtual ~CMbufGobblerTestServer();
       
    39     virtual CTestStep* CreateTestStep(const TDesC& aStepName);
       
    40     };
       
    41 
       
    42 	
       
    43 #endif // __MBUFGOBBLER_SERVER_H__
       
    44 
       
    45