videofeeds/server/tsrc/IptvTestUtility/inc/CIptvTestVodContentAllDetails.h
changeset 0 96612d01cf9f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/videofeeds/server/tsrc/IptvTestUtility/inc/CIptvTestVodContentAllDetails.h	Mon Jan 18 20:21:12 2010 +0200
@@ -0,0 +1,80 @@
+/*
+* Copyright (c) 2002-2004 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:   Holds all ECG data for one VOD content item.*
+*/
+
+
+
+#ifndef CIPTVTESTVODCONTENTALLDETAILS_H
+#define CIPTVTESTVODCONTENTALLDETAILS_H
+
+//  INCLUDES
+
+// CONSTANTS
+
+// MACROS
+
+// DATA TYPES
+
+// FUNCTION PROTOTYPES
+
+// FORWARD DECLARATIONS
+class CIptvVodContentContentFullDetails;
+class CIptvVodContentContentBriefDetails;
+class CIptvMediaContent;
+
+// CLASS DECLARATION
+
+/**
+* class CIptvTestVodContentAllDetails
+*  @since
+*/
+class CIptvTestVodContentAllDetails : public CBase
+    {
+    public:  // Constructors and destructor
+
+        /**
+        * Two-phased constructor.
+        */
+        IMPORT_C static CIptvTestVodContentAllDetails* NewL();
+
+        /**
+        * Destructor.
+        */
+        IMPORT_C virtual ~CIptvTestVodContentAllDetails();
+
+    private:
+
+        /**
+        * C++ default constructor.
+        */
+        CIptvTestVodContentAllDetails();
+
+        /**
+        * By default Symbian 2nd phase constructor is private.
+        */
+        void ConstructL();
+
+    public:    // Data
+        CIptvVodContentContentFullDetails*      iFullDetails;
+        CIptvVodContentContentBriefDetails*     iBriefDetails;
+        RPointerArray<CIptvMediaContent>        iMediaContents;
+
+        TInt                                    iCategoryId;
+    };
+
+
+#endif      // CIPTVTESTVODCONTENTALLDETAILS_H
+
+// End of File