telephonyprotocols/pdplayer/inc/pdpmessagedefn.h
changeset 44 8b72faa1200f
parent 39 2473f5e227f9
child 45 28dbf5a297f4
equal deleted inserted replaced
39:2473f5e227f9 44:8b72faa1200f
     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 // It contains all the internal messages used by PDP component.
       
    15 //
       
    16 
       
    17 /**
       
    18  @file
       
    19  @internalComponent
       
    20 */
       
    21 
       
    22 #ifndef SYMBIAN_PDP_MESSAGE_DEFN_H
       
    23 #define SYMBIAN_PDP_MESSAGE_DEFN_H
       
    24 
       
    25 class TPDPMessages
       
    26     {
       
    27 public:
       
    28     enum { ERealmId = 0x102822EF };
       
    29 
       
    30 private:
       
    31     enum
       
    32     /**
       
    33     Definition of generic Link Tier message ids
       
    34     */
       
    35         {
       
    36         EPDPFSMMessage = Messages::KNullMessageId + 1,
       
    37         EAuthenticateComplete = Messages::KNullMessageId + 2,
       
    38         EPDPContentionResultMessage = Messages::KNullMessageId + 3
       
    39         };
       
    40 public:
       
    41     typedef Messages::TMessageSigNumberNumber<EPDPFSMMessage, TPDPMessages::ERealmId> TPDPFSMMessage;
       
    42     typedef Messages::TMessageSigNumber<EAuthenticateComplete, TPDPMessages::ERealmId> TAuthenticateComplete;
       
    43     typedef Messages::TMessageSigNodeIdNumber<EPDPContentionResultMessage, TPDPMessages::ERealmId> TPdpContentionResultMessage;
       
    44     };
       
    45 
       
    46 #endif