xartigas pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=e16b32c37643d3243b2350df053474d84717c2a2

commit e16b32c37643d3243b2350df053474d84717c2a2
Author: Jaehyun Cho <jae_hyun....@samsung.com>
Date:   Fri Dec 20 09:44:41 2019 +0100

    csharp: add documentation of class Efl.Eo.Config in iwrapper
    
    Summary: Description and since efl version of the class Efl.Eo.Config is 
added.
    
    Reviewers: YOhoho, lauromoura, segfaultxavi
    
    Reviewed By: segfaultxavi
    
    Subscribers: segfaultxavi, cedric, #reviewers, #committers
    
    Tags: #efl
    
    Differential Revision: https://phab.enlightenment.org/D10933
---
 src/bindings/mono/eo_mono/iwrapper.cs | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/src/bindings/mono/eo_mono/iwrapper.cs 
b/src/bindings/mono/eo_mono/iwrapper.cs
index b4f1af9fcd..29a346dcc4 100644
--- a/src/bindings/mono/eo_mono/iwrapper.cs
+++ b/src/bindings/mono/eo_mono/iwrapper.cs
@@ -920,15 +920,26 @@ internal struct WrappingHandle
     public IntPtr NativeHandle { get; private set; }
 }
 
+/// <summary>
+/// Manage the initialization and cleanup for the Efl object subsystem.
+/// <para>Since EFL 1.24.</para>
+/// </summary>
 public static class Config
 {
-
+    /// <summary>
+    /// Initialize the EFL object subsystem.
+    /// <para>Since EFL 1.24.</para>
+    /// </summary>
     public static void Init()
     {
         Globals.efl_object_init();
         Globals.SetNativeDisposeCallbacks();
     }
 
+    /// <summary>
+    /// Shutdown the EFL object subsystem.
+    /// <para>Since EFL 1.24.</para>
+    /// </summary>
     public static void Shutdown()
     {
         Globals.efl_object_shutdown();

-- 


Reply via email to