voiceui/vcommand/inc/vcfolderview.h
branchRCL_3
changeset 23 e36f3802f733
parent 0 bf1d17376201
equal deleted inserted replaced
22:cad71a31b7fc 23:e36f3802f733
       
     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:  View class for folders
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef CVCFOLDERVIEW_H
       
    20 #define CVCFOLDERVIEW_H
       
    21 
       
    22 // INCLUDES
       
    23 #include "vcgenericview.h"
       
    24 #include "vcmodel.h"
       
    25 
       
    26 // CLASS DECLARATION
       
    27 
       
    28 /**
       
    29  * CVCFolderView view class. Inherited from a base class CVCGenericView.
       
    30  */
       
    31 class CVCFolderView : public CVCGenericView 
       
    32     {
       
    33     public: // Constructors and destructor
       
    34 
       
    35         /**
       
    36          * Constructor.
       
    37          *
       
    38          * @param aService reference to VC API
       
    39          */
       
    40         CVCFolderView( /*CVCommandHandler& aService,*/
       
    41                        CVCModel& aModel );
       
    42 
       
    43     public: // Functions from base classes
       
    44 
       
    45         /**
       
    46          * From CAknView
       
    47          * Returns folder view's id.
       
    48          * @see CAknView for more information
       
    49          */
       
    50         TUid Id() const;
       
    51     };
       
    52 
       
    53 #endif  // CVCFOLDERVIEW_H
       
    54 
       
    55 // End of File
       
    56