accessoryservices/remotecontrolfw/server/inc/remconmessage.inl
changeset 0 4e1aa6a622a0
equal deleted inserted replaced
-1:000000000000 0:4e1aa6a622a0
       
     1 // Copyright (c) 2004-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  @internalComponent
       
    19 */
       
    20 
       
    21 const TRemConAddress& CRemConMessage::Addr() const
       
    22 	{
       
    23 	return iAddr;
       
    24 	}
       
    25 
       
    26 TRemConAddress& CRemConMessage::Addr()
       
    27 	{
       
    28 	return iAddr;
       
    29 	}
       
    30 
       
    31 const TRemConClientId& CRemConMessage::Client() const
       
    32 	{
       
    33 	return iClient;
       
    34 	}
       
    35 
       
    36 TRemConMessageType CRemConMessage::MsgType() const
       
    37 	{
       
    38 	return iMsgType;
       
    39 	}
       
    40 
       
    41 TUid CRemConMessage::InterfaceUid() const
       
    42 	{
       
    43 	return iInterfaceUid;
       
    44 	}
       
    45 
       
    46 TUint CRemConMessage::OperationId() const
       
    47 	{
       
    48 	return iOperationId;
       
    49 	}
       
    50 
       
    51 const RBuf8& CRemConMessage::OperationData() const
       
    52 	{
       
    53 	return iData;
       
    54 	}
       
    55 
       
    56 RBuf8& CRemConMessage::OperationData()
       
    57 	{
       
    58 	return iData;
       
    59 	}
       
    60 
       
    61 TUint CRemConMessage::SessionId() const
       
    62 	{
       
    63 	return iSessionId;
       
    64 	}
       
    65 
       
    66 TUint& CRemConMessage::SessionId()
       
    67 	{
       
    68 	return iSessionId;
       
    69 	}
       
    70 
       
    71 TUint CRemConMessage::TransactionId() const
       
    72 	{
       
    73 	return iTransactionId;
       
    74 	}
       
    75 
       
    76 TUint& CRemConMessage::TransactionId()
       
    77 	{
       
    78 	return iTransactionId;
       
    79 	}
       
    80 
       
    81 TRemConMessageSubType& CRemConMessage::MsgSubType()
       
    82 	{
       
    83 	return iMsgSubType;
       
    84 	}
       
    85 
       
    86 TRemConMessageSubType CRemConMessage::MsgSubType() const
       
    87 	{
       
    88 	return iMsgSubType;
       
    89 	}
       
    90 
       
    91 TBool CRemConMessage::IsReliableSend() const
       
    92 	{
       
    93 	return iIsReliableSend;
       
    94 	}