locationsystemui/locationsysui/locpsysettings/locpsysettingsui/inc/locpsycommandhandler.h
branchRCL_3
changeset 44 2b4ea9893b66
parent 42 02ba3f1733c6
child 45 6b6920c56e2f
equal deleted inserted replaced
42:02ba3f1733c6 44:2b4ea9893b66
     1 /*
       
     2 * Copyright (c) 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:  Interface class that provides the command handling functionality.
       
    15 *				 The class implementing it should be prepared to handle all commands
       
    16 *				 except those internal to the calling UI
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 #ifndef MLOCPSYCOMMANDHANDLER_H_
       
    22 #define MLOCPSYCOMMANDHANDLER_H_
       
    23 
       
    24 // System Include 
       
    25 #include <e32base.h>
       
    26 
       
    27 // Class Definition
       
    28 /**
       
    29  *	Interface class that provides the command handling functionality.
       
    30  */
       
    31 class MLocPsyCommandHandler
       
    32 	{
       
    33 	public:
       
    34 		/**
       
    35 		 * Command handlikng function
       
    36 		 *
       
    37 		 * @param aCommand Command that needs to be handled
       
    38 		 */
       
    39 		 virtual void HandleCommandL( TInt aCommand )	= 0;
       
    40 	};
       
    41 
       
    42 #endif //MLOCPSYCOMMANDHANDLER_H_
       
    43