Add property for getting children in container
authorpius.lee <pius.lee@samsung.com>
Fri, 21 Jul 2017 06:49:52 +0000 (15:49 +0900)
committerpius.lee <pius.lee@samsung.com>
Fri, 21 Jul 2017 06:50:55 +0000 (15:50 +0900)
Change-Id: I3057604307887c609dd1039d032bb76380c1cb35

src/ElmSharp/ElmSharp/Container.cs

index 5701fe6..6abb589 100755 (executable)
@@ -57,6 +57,8 @@ namespace ElmSharp
             }
         }
 
+        protected IEnumerable<EvasObject> Children => _children;
+
         protected void AddChild(EvasObject obj)
         {
             _children.Add(obj);
@@ -78,4 +80,4 @@ namespace ElmSharp
             _children.Remove((EvasObject)sender);
         }
     }
-}
\ No newline at end of file
+}