messagingfw/deprecate/senduiservices/src/SendUiCapabilityCheck.cpp
branchRCL_3
changeset 22 d2c4c66342f3
equal deleted inserted replaced
21:e5b3a2155e1a 22:d2c4c66342f3
       
     1 /*
       
     2 * Copyright (c) 2002-2004 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:   Utility class for SendUI.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 // INCLUDE FILES
       
    22 #include <s32mem.h>
       
    23 #include <e32base.h>
       
    24 #include <mtclbase.h>
       
    25 #include <tmsvpackednotifierrequest.h>
       
    26 
       
    27 #include "SendUiCapabilityCheck.h"
       
    28 
       
    29 // CONSTANTS
       
    30 const TUid KSendUiNotifierPluginUid = {0x10282895};
       
    31 const TInt32 KSendUiServiceMaxNameLength    = 40; // original defined in SendUIPrivateCRKeys.h
       
    32 const TInt32 KSendUiNotifierBufferSize = KSendUiServiceMaxNameLength + sizeof(TUint32);
       
    33 
       
    34 typedef TBuf8<KSendUiNotifierBufferSize> TTransferBuf;
       
    35 
       
    36 // ============================ MEMBER FUNCTIONS ===============================
       
    37 
       
    38 // -----------------------------------------------------------------------------
       
    39 // CSendUiCapabilityCheck:CSendUiCapabilityCheck
       
    40 // C++ default constructor can NOT contain any code, that
       
    41 // might leave.
       
    42 // -----------------------------------------------------------------------------
       
    43 //
       
    44 CSendUiCapabilityCheck::CSendUiCapabilityCheck()
       
    45     : CActive( EPriorityStandard )
       
    46     {
       
    47      }
       
    48     
       
    49 // -----------------------------------------------------------------------------
       
    50 // CSendUiCapabilityCheck::NewL
       
    51 // Two-phased constructor.
       
    52 // -----------------------------------------------------------------------------
       
    53 //
       
    54 CSendUiCapabilityCheck* CSendUiCapabilityCheck::NewLC()
       
    55     {
       
    56 
       
    57     }
       
    58 
       
    59 // -----------------------------------------------------------------------------
       
    60 // CSendUiCapabilityCheck::ConstructL
       
    61 // -----------------------------------------------------------------------------
       
    62 //
       
    63 void CSendUiCapabilityCheck::ConstructL()
       
    64     {
       
    65 
       
    66     }
       
    67 
       
    68 
       
    69 // -----------------------------------------------------------------------------
       
    70 // CSendUiCapabilityCheck::CheckCapabilitiesL
       
    71 // -----------------------------------------------------------------------------
       
    72 //
       
    73 TBool CSendUiCapabilityCheck::CheckCapabilitiesL(
       
    74     const TSecurityInfo& aSecurityInfo,
       
    75     CMsvSession& aSession,
       
    76     const TUid aMtmType,
       
    77     const TDesC& aServiceName )
       
    78     {
       
    79             
       
    80     }
       
    81 
       
    82 // -----------------------------------------------------------------------------
       
    83 // CSendUiCapabilityCheck::~CSendUiCapabilityCheck
       
    84 // Destructor
       
    85 // -----------------------------------------------------------------------------
       
    86 //
       
    87 CSendUiCapabilityCheck::~CSendUiCapabilityCheck()
       
    88     {
       
    89 
       
    90     }
       
    91 
       
    92 // -----------------------------------------------------------------------------
       
    93 // CSendUiCapabilityCheck::RunL
       
    94 // -----------------------------------------------------------------------------
       
    95 //
       
    96 void CSendUiCapabilityCheck::RunL()
       
    97     {
       
    98 
       
    99     }
       
   100 
       
   101 // -----------------------------------------------------------------------------
       
   102 // CSendUiCapabilityCheck::DoCancel
       
   103 // -----------------------------------------------------------------------------
       
   104 //
       
   105 void CSendUiCapabilityCheck::DoCancel()
       
   106     {
       
   107 
       
   108     }
       
   109 
       
   110     
       
   111 //  End of File