diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 15:36:18 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 15:36:18 +0100 |
commit | 06825f703d413cec78849877fb2dba6593336175 (patch) | |
tree | 391f552be4be601ea9249d2f5fc8674a147aa7b0 /lib/efl/elm/elm_bubble.rb | |
parent | 8dc91c77cfcb1e6adc7cbabef1fa578df00a3617 (diff) | |
download | ffi-efl-06825f703d413cec78849877fb2dba6593336175.zip ffi-efl-06825f703d413cec78849877fb2dba6593336175.tar.gz |
parse elm_bubble.h, generate elm_bubble.rb
Diffstat (limited to 'lib/efl/elm/elm_bubble.rb')
-rw-r--r-- | lib/efl/elm/elm_bubble.rb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/efl/elm/elm_bubble.rb b/lib/efl/elm/elm_bubble.rb new file mode 100644 index 0000000..ca5bbef --- /dev/null +++ b/lib/efl/elm/elm_bubble.rb @@ -0,0 +1,22 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/elm/elm_object' +require 'efl/native/elm/elm_bubble' +# +module Efl + # + module Elm + # + class ElmBubble < ElmObject + # + include Helper + constructor :elm_bubble_add + search_prefixes 'elm_bubble_' + # + end + # + end +end +# +# EOF |