contentstorage/cautils/inc/cainnerentry.h
changeset 127 7b66bc3c6dc9
parent 98 d2f833ab7940
--- a/contentstorage/cautils/inc/cainnerentry.h	Wed Oct 13 12:59:22 2010 +0300
+++ b/contentstorage/cautils/inc/cainnerentry.h	Mon Oct 18 10:44:15 2010 +0300
@@ -114,6 +114,12 @@
      */
     IMPORT_C TInt GetIconId() const;
 
+    /**
+     * Get entry array of parent ids. 
+     * @return Array of parent ids.
+     */
+    IMPORT_C  const RArray<TInt>& GetParentIds() const; 
+
     //    SETTERS
     /**
      * Sets entry id.
@@ -201,6 +207,12 @@
      * @param aIconId Icon id.
      */
     IMPORT_C void SetIconId( TInt aIconId );
+    
+    /**
+     * Sets the parent ids to entry.
+     * @param aArray The array of parent ids.
+     */
+    IMPORT_C void SetParentIdsL( const RArray<TInt>& aArray );    
 
     /**
      * Externalizes object to the stream
@@ -288,7 +300,10 @@
     
     TBool iDescriptionLocalized;
     
-
+    /*
+     * Parent ids of entry. Own.
+     */
+    RArray<TInt> iParentIds;
     };
 
 #endif // __CAINNERENTRY_H__