menucontentsrv/inc/mcsmenusapi.h
changeset 0 79c6a41cd166
equal deleted inserted replaced
-1:000000000000 0:79c6a41cd166
       
     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 __MCSMENUSAPI_H__
       
    19 #define __MCSMENUSAPI_H__
       
    20 
       
    21 #include <e32base.h>
       
    22 
       
    23 #include "mcsmenu.h"
       
    24 
       
    25 /**
       
    26  *  Menu session.
       
    27  *  The menu is an ID-based tree structure of menu folders and items.
       
    28  *  @lib mcsmenu.lib
       
    29  *  @since S60 v5.0
       
    30  */
       
    31 NONSHARABLE_CLASS( RMenuSapi ): public RMenu
       
    32     {
       
    33 public:
       
    34 
       
    35     /**
       
    36     * GetList operation
       
    37 	* @param aSerializedIn serialized list of input parameters
       
    38 	* @param aSerializedOut serialized list with getlist output
       
    39     */
       
    40 	IMPORT_C void GetListL( TDes8& aSerializedIn,
       
    41 		RBuf8& aSerializedOut );
       
    42 
       
    43 
       
    44     };
       
    45 
       
    46 #endif // __MCSMENUSAPI_H__