DirectPrint/DirectPrintApp/ui/inc/directprintlistobserver.h
changeset 19 2275db202402
parent 11 613a5ff70823
equal deleted inserted replaced
2:acc370d7f2f6 19:2275db202402
       
     1 /*
       
     2 * Copyright (c) 2010 Kanrikogaku Kenkyusho, Ltd.
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the License "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 * Kanrikogaku Kenkyusho, Ltd. - Initial contribution
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 * {Description of the file}
       
    16 *
       
    17 */
       
    18 
       
    19 // Protection against nested includes
       
    20 #ifndef __DIRECTPRINTLISTOBSERVER_H__
       
    21 #define __DIRECTPRINTLISTOBSERVER_H__
       
    22 
       
    23 // Class declaration
       
    24 /**
       
    25  *  List observer mix-in class
       
    26  *  more_complete_description
       
    27  */
       
    28 class MDirectPrintListObserver
       
    29 	{
       
    30 public:
       
    31 	/**
       
    32 	 * Handles index.
       
    33 	 *
       
    34 	 * @param aIndex The index of selected item.
       
    35 	 */
       
    36 	virtual void HandleListIndexL(TInt aIndex) = 0;
       
    37 	};
       
    38 
       
    39 #endif // __DIRECTPRINTLISTOBSERVER_H__