phoneclientserver/phoneserver/Inc/Standard/CPhSrvScheduler.h
changeset 46 2fa1fa551b0b
parent 42 35488577e233
child 48 78df25012fda
equal deleted inserted replaced
42:35488577e233 46:2fa1fa551b0b
     1 /*
       
     2 * Copyright (c) 2002 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:  Phone Server scheduler.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef CPHSRVSCHEDULER_H
       
    20 #define CPHSRVSCHEDULER_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <e32base.h>
       
    24 
       
    25 
       
    26 // CLASS DECLARATION
       
    27 
       
    28 /**
       
    29 *  It is the scheduler for active objects.
       
    30 *  
       
    31 *  @since 1.0
       
    32 */
       
    33 class CPhSrvScheduler : 
       
    34     public CActiveScheduler
       
    35     {
       
    36     public: // Constructors and destructors
       
    37 
       
    38         /**
       
    39         * C++ default constructor.
       
    40         */
       
    41         CPhSrvScheduler();
       
    42 
       
    43 
       
    44     public: // Functions from base classes
       
    45 
       
    46         /**
       
    47         * From CActiveScheduler, it is called in case of unhandled error.
       
    48         *
       
    49         * @param aError It is the error code.
       
    50         */
       
    51         void Error( TInt anError ) const;
       
    52 
       
    53     };
       
    54 
       
    55 #endif      // CPHSRVSCHEDULER_H
       
    56 
       
    57 
       
    58 // End of File