linklayercontrol/networkinterfacemgr/agentprcore/inc/tunnelagentcpr.h
changeset 0 af10295192d8
child 19 3652a10b304a
equal deleted inserted replaced
-1:000000000000 0:af10295192d8
       
     1 // Copyright (c) 2008-2009 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 //
       
    15 
       
    16 /**
       
    17  @file
       
    18  @internalTechnology
       
    19  @prototype
       
    20 */
       
    21 
       
    22 
       
    23 #ifndef SYMBIAN_TUNNELAGENTCPR_H
       
    24 #define SYMBIAN_TUNNELAGENTCPR_H
       
    25 #include "agentcpr.h"
       
    26 
       
    27 #include <comms-infras/corecpr.h>
       
    28 #include <comms-infras/ss_nodemessages_legacy.h>
       
    29 #include <comms-infras/ss_nodemessages_legacy_internal.h>
       
    30 #include <comms-infras/ss_legacyinterfaces.h>
       
    31 #include <comms-infras/ss_commsdataobject.h>
       
    32 #include <comms-infras/cagentadapter.h>
       
    33 
       
    34 namespace ESock
       
    35 {
       
    36 	class MPlatsecApiExt;
       
    37 }
       
    38 
       
    39 namespace TunnelAgentCprStates
       
    40 {
       
    41 	class TJoinRealIAP;
       
    42 }
       
    43 
       
    44 
       
    45 class CTunnelAgentConnectionProvider : public CAgentConnectionProvider
       
    46 	{
       
    47 	friend class TunnelAgentCprStates::TJoinRealIAP;
       
    48 
       
    49 public:
       
    50     IMPORT_C static CTunnelAgentConnectionProvider* NewL(ESock::CConnectionProviderFactoryBase& aFactory);
       
    51     IMPORT_C ~CTunnelAgentConnectionProvider();
       
    52 
       
    53 protected:
       
    54     CTunnelAgentConnectionProvider(ESock::CConnectionProviderFactoryBase& aFactory);
       
    55     CTunnelAgentConnectionProvider(ESock::CConnectionProviderFactoryBase& aFactory, const MeshMachine::TNodeActivityMap& aActivityMap);
       
    56 	};
       
    57 
       
    58 
       
    59 #endif
       
    60 // SYMBIAN_TUNNELAGENTCPR_H
       
    61