telephonyprotocols/pdplayer/umts/test/mbufgobblerlayer/inc/mbufgobblertiermanager.h
branchRCL_3
changeset 82 042fd2753b8f
equal deleted inserted replaced
74:9200f38b1324 82:042fd2753b8f
       
     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 // Contributors:
       
     9 //
       
    10 // Description:
       
    11 // Tier Manager
       
    12 //   (management plane)
       
    13 //
       
    14 
       
    15 /**
       
    16  @file
       
    17  @internalComponent
       
    18 */
       
    19 
       
    20 #ifndef MBUFGOBBLERTIERMANAGER_H
       
    21 #define MBUFGOBBLERTIERMANAGER_H
       
    22 
       
    23 // INCLUDES
       
    24 #include <e32std.h>
       
    25 #include <e32base.h>
       
    26 #include <comms-infras/coretiermanager.h>
       
    27 #include "mbufgobblertestflags.h"
       
    28 
       
    29 // CLASS DECLARATION
       
    30 
       
    31 /**
       
    32  *  CMbufGobblerTierManager
       
    33  * 
       
    34  */
       
    35 class CMbufGobblerTierManager : public CCoreTierManager
       
    36 	{
       
    37 public:
       
    38 	static CMbufGobblerTierManager* NewL(ESock::CTierManagerFactoryBase& aFactory);
       
    39 	~CMbufGobblerTierManager();
       
    40 	virtual ESock::MProviderSelector* DoCreateProviderSelectorL(const Meta::SMetaData& aSelectionPreferences);
       
    41 
       
    42 protected: //from Messages::ANode
       
    43 	virtual void ReceivedL(const Messages::TRuntimeCtxId& aSender, const Messages::TNodeId& aRecipient, Messages::TSignatureBase& aMessage);
       
    44 private:
       
    45 	CMbufGobblerTierManager(ESock::CTierManagerFactoryBase& aFactory);
       
    46 	void ConstructL();
       
    47 private:
       
    48 	TInt iClientCount; //holds count of clients that node is joined with
       
    49 	MBUFGOBBLER_TEST_DATA	
       
    50 	};
       
    51 
       
    52 #endif // MBUFGOBBLERTIERMANAGER_H