satengine/SatServer/inc/MSatSSimSubscriberId.h
changeset 46 2fa1fa551b0b
parent 42 35488577e233
child 48 78df25012fda
equal deleted inserted replaced
42:35488577e233 46:2fa1fa551b0b
     1 /*
       
     2 * Copyright (c) 2002-2005 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:  This is the handler for the SIM Application Toolkit
       
    15 *                to dedect the SIM card subscriber id.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 #ifndef MSATSSIMSUBSCRIBERID_H
       
    22 #define MSATSSIMSUBSCRIBERID_H
       
    23 
       
    24 //  INCLUDES
       
    25 #include <e32std.h>
       
    26 #include <etelmm.h>
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31 *  SIM Subscriber id handler interface.
       
    32 *
       
    33 *  @lib SATEngine.lib
       
    34 *  @since Series 60 3.0
       
    35 */
       
    36 class MSatSSimSubscriberId
       
    37     {
       
    38     public:  // Constructors and destructor
       
    39 
       
    40         /*
       
    41         * Destructor.
       
    42         */
       
    43         virtual ~MSatSSimSubscriberId() {};
       
    44 
       
    45     public: // New functions
       
    46 
       
    47         /**
       
    48         * Starts listening for the SIM card subscriber id.
       
    49         */
       
    50         virtual void Start() = 0;
       
    51 
       
    52     protected:
       
    53 
       
    54         /**
       
    55         * Constructor.
       
    56         */
       
    57         MSatSSimSubscriberId() {};
       
    58 
       
    59         // Prohibit copy constructor if not deriving from CBase.
       
    60         MSatSSimSubscriberId( const MSatSSimSubscriberId& );
       
    61 
       
    62         // Prohibit assigment operator if not deriving from CBase.
       
    63         MSatSSimSubscriberId& operator=( const MSatSSimSubscriberId& );
       
    64 
       
    65     };
       
    66 
       
    67 #endif      // MSATSSIMSUBSCRIBERID_H
       
    68 
       
    69 // End of File