commsfwutils/commsbufs/mbufgobblerlayer/inc/mbufgobblersubconnproviderstates.h
changeset 78 dd4909eb54cd
equal deleted inserted replaced
77:c9776eadbffd 78:dd4909eb54cd
       
     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 // Connection Provider Declaration
       
    15 //  (control plane)
       
    16 //
       
    17 //
       
    18 //  This is a 3-plane comms layer implementation example, which has been customised to be a test layer which gobbles and releases ESOCK MBUFs.
       
    19 //  The MBuf gobbling functionality can be disabled by undefining the macro SYMBIAN_COMMSFW_MBUF_GOBBLER which is specified in mbufgobblerproviders.mmp.
       
    20 //  When SYMBIAN_COMMSFW_MBUF_GOBBLER is undefined, the source code specified by mbufgobblerproviders.mmp becomes a pass through layer i.e. it passes the data
       
    21 //  through to the layer above or below without altering it. This makes it useful as a starting point for implementing your own layers / providers;
       
    22 //  useful documentation on how to customise your own passthrough layer can be found in ..\docs\MbufGobblerLayer.doc
       
    23 //
       
    24 
       
    25 /**
       
    26  @file
       
    27  @internalComponent
       
    28 */
       
    29 
       
    30 #ifndef MBUFGOBBLERSUBCONNPROVIDERSTATES_H
       
    31 #define MBUFGOBBLERSUBCONNPROVIDERSTATES_H
       
    32 
       
    33 // INCLUDES
       
    34 #include <e32std.h>
       
    35 #include <e32base.h>
       
    36 
       
    37 // CLASS DECLARATION
       
    38 
       
    39 /**
       
    40  *  CMbufGobblerSubconnMeshStates
       
    41  * 
       
    42  */
       
    43 class CMbufGobblerSubconnMeshStates : public CBase
       
    44 	{
       
    45 public:
       
    46 	// Constructors and destructor
       
    47 
       
    48 	/**
       
    49 	 * Destructor.
       
    50 	 */
       
    51 	~CMbufGobblerSubconnMeshStates();
       
    52 
       
    53 	/**
       
    54 	 * Two-phased constructor.
       
    55 	 */
       
    56 	static CMbufGobblerSubconnMeshStates* NewL();
       
    57 
       
    58 	/**
       
    59 	 * Two-phased constructor.
       
    60 	 */
       
    61 	static CMbufGobblerSubconnMeshStates* NewLC();
       
    62 
       
    63 private:
       
    64 
       
    65 	/**
       
    66 	 * Constructor for performing 1st stage construction
       
    67 	 */
       
    68 	CMbufGobblerSubconnMeshStates();
       
    69 
       
    70 	/**
       
    71 	 * EPOC default constructor for performing 2nd stage construction
       
    72 	 */
       
    73 	void ConstructL();
       
    74 
       
    75 	};
       
    76 
       
    77 #endif // MBUFGOBBLERSUBCONNPROVIDERSTATES_H