--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/videofeeds/vcnsuiengine/inc/vcxnscategory.h Wed Sep 01 12:30:28 2010 +0100
@@ -0,0 +1,132 @@
+/*
+* Copyright (c) 2008 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:
+*
+*/
+
+
+
+
+#ifndef C_VCXNSVODCATEGORY_H
+#define C_VCXNSVODCATEGORY_H
+
+// INCLUDES
+#include <e32std.h>
+#include <e32base.h>
+
+// CLASS DECLARATION
+
+/**
+ * Category data class.
+ * Holds category information.
+ *
+ * @lib vcxnsuiengine.lib
+ */
+class CVcxNsCategory : public CBase
+ {
+public:
+
+ /**
+ * Constructor.
+ * @return Pointer to created CVcxNsCategory object.
+ */
+ static CVcxNsCategory* NewL();
+
+ /**
+ * Destructor.
+ */
+ virtual ~CVcxNsCategory();
+
+ /**
+ * Get category name.
+ * @return Category name.
+ */
+ IMPORT_C const TDesC& GetName();
+
+ /**
+ * Get category id
+ * @return Category id
+ */
+ IMPORT_C TUint32 GetCategoryId();
+
+ /**
+ * Get category's video count.
+ * @return Video count.
+ */
+ IMPORT_C TInt GetVideoCount();
+
+ /**
+ * Set category name.
+ * @param aName Category name
+ */
+ void SetNameL( const TDesC& aName );
+
+ /**
+ * Set category id for category.
+ * @param aCategoryId Category id.
+ */
+ void SetCategoryId( const TUint32 aCategoryId );
+
+ /**
+ * Set video count for category.
+ * @param aVideoCount Video count.
+ */
+ void SetVideoCount( const TInt aVideoCount );
+
+ /**
+ * Set video count for category.
+ * @param aIndex Content list highlight index
+ */
+ void SetHighlightContentIndex( TInt aIndex );
+
+ /**
+ * Get content list index for highlighting
+ * item in content list in category.
+ * @return Content list index. If not set, always 0 by default.
+ */
+ TInt HighlightContentIndex();
+
+private:
+
+ /**
+ * Default constructor
+ */
+ CVcxNsCategory( );
+
+private:
+
+ /**
+ * Category name.
+ * Own.
+ */
+ HBufC* iName;
+
+ /**
+ * Category id.
+ */
+ TUint32 iCategoryId;
+
+ /**
+ * Video count in category.
+ */
+ TInt iVideoCount;
+
+ /**
+ * Content index for category in content list.
+ */
+ TInt iContentIndex;
+
+ };
+
+#endif // C_VCXNSVODCATEGORY_H