videofeeds/server/tsrc/IptvTestUtility/inc/CIptvTestVodContentAllDetails.h
changeset 0 96612d01cf9f
equal deleted inserted replaced
-1:000000000000 0:96612d01cf9f
       
     1 /*
       
     2 * Copyright (c) 2002-2004 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:   Holds all ECG data for one VOD content item.*
       
    15 */
       
    16 
       
    17 
       
    18 
       
    19 #ifndef CIPTVTESTVODCONTENTALLDETAILS_H
       
    20 #define CIPTVTESTVODCONTENTALLDETAILS_H
       
    21 
       
    22 //  INCLUDES
       
    23 
       
    24 // CONSTANTS
       
    25 
       
    26 // MACROS
       
    27 
       
    28 // DATA TYPES
       
    29 
       
    30 // FUNCTION PROTOTYPES
       
    31 
       
    32 // FORWARD DECLARATIONS
       
    33 class CIptvVodContentContentFullDetails;
       
    34 class CIptvVodContentContentBriefDetails;
       
    35 class CIptvMediaContent;
       
    36 
       
    37 // CLASS DECLARATION
       
    38 
       
    39 /**
       
    40 * class CIptvTestVodContentAllDetails
       
    41 *  @since
       
    42 */
       
    43 class CIptvTestVodContentAllDetails : public CBase
       
    44     {
       
    45     public:  // Constructors and destructor
       
    46 
       
    47         /**
       
    48         * Two-phased constructor.
       
    49         */
       
    50         IMPORT_C static CIptvTestVodContentAllDetails* NewL();
       
    51 
       
    52         /**
       
    53         * Destructor.
       
    54         */
       
    55         IMPORT_C virtual ~CIptvTestVodContentAllDetails();
       
    56 
       
    57     private:
       
    58 
       
    59         /**
       
    60         * C++ default constructor.
       
    61         */
       
    62         CIptvTestVodContentAllDetails();
       
    63 
       
    64         /**
       
    65         * By default Symbian 2nd phase constructor is private.
       
    66         */
       
    67         void ConstructL();
       
    68 
       
    69     public:    // Data
       
    70         CIptvVodContentContentFullDetails*      iFullDetails;
       
    71         CIptvVodContentContentBriefDetails*     iBriefDetails;
       
    72         RPointerArray<CIptvMediaContent>        iMediaContents;
       
    73 
       
    74         TInt                                    iCategoryId;
       
    75     };
       
    76 
       
    77 
       
    78 #endif      // CIPTVTESTVODCONTENTALLDETAILS_H
       
    79 
       
    80 // End of File