telephonyserverplugins/common_tsy/commontsy/inc/mmcustomtsy/CMmCustomExtInterface.h
changeset 0 3553901f7fa8
equal deleted inserted replaced
-1:000000000000 0:3553901f7fa8
       
     1 /*
       
     2 * Copyright (c) 2006-2009 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:
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef CMMCUSTOMEXTINTERFACE_H
       
    21 #define CMMCUSTOMEXTINTERFACE_H
       
    22 
       
    23 // INCLUDES
       
    24 #include "CMmCustomTsy.h"
       
    25 
       
    26 // CLASS DECLARATION
       
    27 
       
    28 /**
       
    29 *  CMmCustomExtInterface is used to provide an extension interface for 
       
    30 *  mode specific custom object extensions.
       
    31 *
       
    32 */
       
    33 class CMmCustomExtInterface : public CBase
       
    34     {
       
    35     public:
       
    36 
       
    37         /**
       
    38          * Destructor.
       
    39          */
       
    40         virtual ~CMmCustomExtInterface() { return; }
       
    41 
       
    42         /**
       
    43          * Returns remote alerting tone status, default implementation.
       
    44          *          
       
    45          * @param aStatus Pointer to remote alert tone status
       
    46          * return KErrNotSupported
       
    47          */
       
    48         virtual TInt GetRemoteAlertingToneStatus( 
       
    49             RMmCustomAPI::TRemoteAlertingToneStatus* /*aStatus*/ )
       
    50                 { return KErrNotSupported; }
       
    51 
       
    52     protected:
       
    53         /**
       
    54          * Constructor.
       
    55          */
       
    56         CMmCustomExtInterface() { return; };
       
    57 
       
    58     private:
       
    59 
       
    60         // ConstructL creates any class attributes
       
    61         void ConstructL() { return; };
       
    62 
       
    63 };
       
    64 
       
    65 #endif  // CMMCUSTOMEXTINTERFACE_H
       
    66 
       
    67 //  End of File
       
    68