locationtriggering/ltcontainer/inc/lbttriggerstoreobserver.h
changeset 0 667063e416a2
equal deleted inserted replaced
-1:000000000000 0:667063e416a2
       
     1 /*
       
     2 * Copyright (c) 2006 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 file defines the interface which the trigger stores use
       
    15 *                to notify store observers
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 #ifndef MLBTTRIGGERSTOREOBSERVER_H
       
    22 #define MLBTTRIGGERSTOREOBSERVER_H
       
    23 
       
    24 /**
       
    25  *  This M class defines the interface for the trigger stores observer
       
    26  *
       
    27  *  The class that uses trigger store observer must implement this class
       
    28  */
       
    29 class MLbtTriggerStoreObserver
       
    30 	{
       
    31 	public:
       
    32 		/**
       
    33 		 * This method is used by trigger stores to inform its obervers
       
    34 		 * that the trigger store is ready to accept requests
       
    35 		 *
       
    36 		 */
       
    37 		virtual void NotifyTriggerStoreReadyToServe() = 0;
       
    38 	};
       
    39 
       
    40 #endif // MLBTTRIGGERSTOREOBSERVER_H
       
    41