realtimenetprots/sipfw/ProfileAgent/Server/Inc/SipProfileActiveScheduler.h
changeset 0 307788aac0a8
equal deleted inserted replaced
-1:000000000000 0:307788aac0a8
       
     1 /*
       
     2 * Copyright (c) 2003-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 * Name        : sipprofileactivescheduler.h
       
    16 * Part of     : SIP Profile Server
       
    17 * Interface   : private
       
    18 * The class provides scheduling for profile server
       
    19 * Version     : 1.0
       
    20 *
       
    21 */
       
    22 
       
    23 
       
    24 
       
    25 
       
    26 /**
       
    27  @internalComponent
       
    28 */
       
    29 
       
    30 #ifndef CSIPPROFILEACTIVESCHEDULER_H
       
    31 #define CSIPPROFILEACTIVESCHEDULER_H
       
    32 
       
    33 //  INCLUDES
       
    34 
       
    35 #include <e32base.h>
       
    36 
       
    37 // FORWARD DECLARATIONS
       
    38 
       
    39 
       
    40 // CLASS DECLARATION
       
    41 
       
    42 /**
       
    43  * Class provides scheduler for profile server
       
    44  */
       
    45 class CSIPProfileActiveScheduler: public CActiveScheduler
       
    46     {
       
    47 	public:
       
    48 
       
    49 		/**
       
    50 		* Default constructor
       
    51 		*/
       
    52 		CSIPProfileActiveScheduler();
       
    53 
       
    54 		/**
       
    55 		* Destructor
       
    56 		*/
       
    57 		~CSIPProfileActiveScheduler();
       
    58 
       
    59 	public: // From CActiveScheduler
       
    60 		
       
    61 		/**
       
    62 		* Error occurred while scheduling
       
    63 		* @param aError error code
       
    64 		*/
       
    65 		void Error(TInt aError) const;
       
    66     };
       
    67 
       
    68 #endif