summaryrefslogtreecommitdiffstats
path: root/lib/efl/elm
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-02-27 15:38:22 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2012-02-27 15:38:22 +0100
commitd91b9c4689573bf64750c57089ad3711d4389cd7 (patch)
treeecb36e65c6cf598f0f1f955dfb9e5bbebf890060 /lib/efl/elm
parent06825f703d413cec78849877fb2dba6593336175 (diff)
downloadffi-efl-d91b9c4689573bf64750c57089ad3711d4389cd7.zip
ffi-efl-d91b9c4689573bf64750c57089ad3711d4389cd7.tar.gz
parse elm_layout.h, generate elm_layout.rb
Diffstat (limited to 'lib/efl/elm')
-rw-r--r--lib/efl/elm/elm_layout.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/efl/elm/elm_layout.rb b/lib/efl/elm/elm_layout.rb
new file mode 100644
index 0000000..a1eb99f
--- /dev/null
+++ b/lib/efl/elm/elm_layout.rb
@@ -0,0 +1,22 @@
+#! /usr/bin/env ruby
+# -*- coding: UTF-8 -*-
+#
+require 'efl/elm/elm_object'
+require 'efl/native/elm/elm_layout'
+#
+module Efl
+ #
+ module Elm
+ #
+ class ElmLayout < ElmObject
+ #
+ include Helper
+ constructor :elm_layout_add
+ search_prefixes 'elm_layout_'
+ #
+ end
+ #
+ end
+end
+#
+# EOF