mds_plat/harvester_framework_api/inc/harvestereventenum.h
changeset 58 fe894bb075c2
parent 51 87e65c44ff3a
child 60 79f826a55db2
equal deleted inserted replaced
51:87e65c44ff3a 58:fe894bb075c2
     1 /*
       
     2 * Copyright (c) 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 #ifndef HARVESTEREVENTENUM_H_
       
    19 #define HARVESTEREVENTENUM_H_
       
    20 
       
    21 enum HarvesterEventObserverType
       
    22 	{
       
    23 	EHEObserverTypePlaceholder = 1,  // Observing placeholder changes to normal object
       
    24 	EHEObserverTypeMMC = 2,          // Observing MMC handling start and stop
       
    25 	EHEObserverTypeOverall = 4       // Observing overall status of the harvesting
       
    26 	};
       
    27 
       
    28 enum HarvesterEventState
       
    29 	{
       
    30 	EHEStateStarted,                 // Harvesting starting
       
    31 	EHEStateHarvesting,              // Harvesting on-going
       
    32 	EHEStateFinished,                // Harvesting finished
       
    33 	EHEStateUninitialized,           // Harvesting not initialized
       
    34 	EHEStatePaused,                  // Harvesting paused
       
    35 	EHEStateResumed                  // Harvesting resumed
       
    36 	};
       
    37 
       
    38 #endif /*HARVESTEREVENTENUM_H_*/