videofeeds/vcnsuiengine/inc/vcxnsdatalist.h
changeset 0 96612d01cf9f
equal deleted inserted replaced
-1:000000000000 0:96612d01cf9f
       
     1 /*
       
     2 * Copyright (c) 2008 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 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 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 #ifndef C_VCXNSARRAY_H
       
    22 #define C_VCXNSARRAY_H
       
    23 
       
    24 // INCLUDES
       
    25 #include <e32std.h>
       
    26 #include <e32base.h>
       
    27 
       
    28 // FORWARD DECLARATIONS
       
    29 class CVcxNsContent;
       
    30 class CVcxNsCategory;
       
    31 
       
    32 // CLASS DECLARATION
       
    33 
       
    34 /**
       
    35  * CVcxNsContentList 
       
    36  * 
       
    37  * Array class for CVcxNsContent.
       
    38  * 
       
    39  * @lib vcxnsuiengine.lib
       
    40  */
       
    41 
       
    42 class CVcxNsContentList : public CBase
       
    43     {
       
    44     
       
    45 public:
       
    46 
       
    47     virtual ~CVcxNsContentList();
       
    48     
       
    49     /**
       
    50      * Content list
       
    51      */
       
    52     RPointerArray<CVcxNsContent> iArray; 
       
    53     
       
    54     /**
       
    55      * iServiceId
       
    56      */
       
    57     TUint32 iServiceId;
       
    58     
       
    59     /**
       
    60      * iCategoryId
       
    61      */
       
    62     TUint32 iCategoryId;
       
    63     
       
    64     };
       
    65 
       
    66 /**
       
    67  * CVcxNsCategoryList 
       
    68  * 
       
    69  * Array class for CVcxNsCategory.
       
    70  * 
       
    71  * @lib vcxnsuiengine.lib
       
    72  */
       
    73 
       
    74 class CVcxNsCategoryList : public CBase
       
    75     {
       
    76     
       
    77 public:
       
    78 
       
    79     virtual ~CVcxNsCategoryList();
       
    80     
       
    81     /**
       
    82      * Content list
       
    83      */
       
    84     RPointerArray<CVcxNsCategory> iArray;
       
    85     
       
    86     /**
       
    87      * iServiceId
       
    88      */
       
    89     TUint32 iServiceId;
       
    90     
       
    91     };
       
    92 
       
    93 #endif // C_VCXNSARRAY_H