Add new layouting support for TextLabel and ImageView.
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / layouting / layout-parent-impl.h
index 392a2ab..d55fb42 100644 (file)
@@ -17,6 +17,8 @@
  * limitations under the License.
  */
 
+#include <dali-toolkit/public-api/dali-toolkit-common.h>
+
 namespace Dali
 {
 namespace Toolkit
@@ -30,10 +32,15 @@ namespace Internal
  * Needed to prevent circular inheritance - most LayoutBases have a parent,
  * but parenting is provided by LayoutGroup, which is a sub-class of LayoutBase.
  */
-class DALI_IMPORT_API LayoutParent
+class DALI_TOOLKIT_API LayoutParent
 {
 public:
   /**
+   * Set the parent of this layout.
+   */
+  virtual void SetParent( LayoutParent* parent ) = 0;
+
+  /**
    * Get the parent of this layout.
    */
   virtual LayoutParent* GetParent() = 0;