satengine/SatServer/inc/TSatEventMonitorFactory.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:  Factory class for Event monitors
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef TSATEVENTMONITORFACTORY_H
       
    21 #define TSATEVENTMONITORFACTORY_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <e32base.h>
       
    25 
       
    26 // FORWARD DECLARATIONS
       
    27 class MSatEventMonitor;
       
    28 class MSatEventMonitorUtils;
       
    29 
       
    30 
       
    31 // CLASS DECLARATION
       
    32 
       
    33 /**
       
    34 *  Factory class.
       
    35 *
       
    36 *  @lib EventMonitors.lib
       
    37 *  @since Series 60 3.0
       
    38 */
       
    39 class TSatEventMonitorFactory
       
    40     {
       
    41     public:  // Factory methods
       
    42 
       
    43         /**
       
    44         * Creates pointer array containing event monitor objects.
       
    45         */
       
    46         IMPORT_C static CArrayPtrFlat<MSatEventMonitor>* 
       
    47             CreateEventMonitorsL( MSatEventMonitorUtils& aUtils );
       
    48         
       
    49     };
       
    50 
       
    51 #endif      // TSATEVENTMONITORFACTORY_H   
       
    52             
       
    53 // End of File