messagingfw/msgcommonutils/src/MsgVoIPExtensionStub.cpp
branchRCL_3
changeset 23 d51193d814ea
parent 0 8e480a14352b
equal deleted inserted replaced
22:d2c4c66342f3 23:d51193d814ea
       
     1 /*
       
     2 * Copyright (c) 2005, 2008 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:   Stub class for get count of VoIP profiles.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include "MsgVoIPExtension.h"
       
    20 
       
    21 // ================= MEMBER FUNCTIONS =======================
       
    22 
       
    23 // C++ default constructor can NOT contain any code, that
       
    24 // might leave.
       
    25 //
       
    26 CMsgVoIPExtension::CMsgVoIPExtension()
       
    27     {
       
    28     }
       
    29 
       
    30 // Two-phased constructor.
       
    31 //
       
    32 EXPORT_C CMsgVoIPExtension* CMsgVoIPExtension::NewL()
       
    33     {
       
    34     CMsgVoIPExtension *self = 
       
    35         new ( ELeave ) CMsgVoIPExtension(); 
       
    36     CleanupStack::PushL( self );
       
    37     self->ConstructL();
       
    38     CleanupStack::Pop();
       
    39     return self;
       
    40     }
       
    41 
       
    42 // ConstructL
       
    43 //
       
    44 void CMsgVoIPExtension::ConstructL()
       
    45     {
       
    46     }        
       
    47     
       
    48 // Destructor
       
    49 //
       
    50 CMsgVoIPExtension::~CMsgVoIPExtension()
       
    51     {
       
    52     }
       
    53 // ----------------------------------------------------
       
    54 // CMsgVoIPExtension::VoIPProfilesExistL
       
    55 // 
       
    56 // ----------------------------------------------------
       
    57 EXPORT_C TBool CMsgVoIPExtension::VoIPProfilesExistL() const
       
    58     {
       
    59     return EFalse; 
       
    60     }
       
    61     
       
    62 // ----------------------------------------------------
       
    63 // CMsgVoIPExtension::IsPreferredTelephonyVoIP
       
    64 // 
       
    65 // ----------------------------------------------------
       
    66 EXPORT_C TBool CMsgVoIPExtension::IsPreferredTelephonyVoIP() const
       
    67     {
       
    68     return EFalse;
       
    69     }
       
    70 
       
    71 // ----------------------------------------------------
       
    72 // CMsgVoIPExtension::IsVoIPSupported
       
    73 // 
       
    74 // ----------------------------------------------------
       
    75 EXPORT_C TBool CMsgVoIPExtension::IsVoIPSupported() const
       
    76     {
       
    77     return EFalse;
       
    78     }
       
    79 
       
    80 
       
    81 //  End of File
       
    82