diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 15:03:43 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 15:03:43 +0100 |
commit | 41f77c375f4bfcc6395425aa86158bdad93108ad (patch) | |
tree | 290002f39100e56ccad0ccc81647dbddb37cfb1e /lib/efl/elm/elm_panel.rb | |
parent | 85de83d793de3e09cdce18cb6034047db400788a (diff) | |
download | ffi-efl-41f77c375f4bfcc6395425aa86158bdad93108ad.zip ffi-efl-41f77c375f4bfcc6395425aa86158bdad93108ad.tar.gz |
parse elm_panel.h, generate elm_panel.rb
Diffstat (limited to 'lib/efl/elm/elm_panel.rb')
-rw-r--r-- | lib/efl/elm/elm_panel.rb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/efl/elm/elm_panel.rb b/lib/efl/elm/elm_panel.rb new file mode 100644 index 0000000..41dbcc5 --- /dev/null +++ b/lib/efl/elm/elm_panel.rb @@ -0,0 +1,22 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/elm/elm_object' +require 'efl/native/elm/elm_panel' +# +module Efl + # + module Elm + # + class ElmPanel < ElmObject + # + include Helper + constructor :elm_panel_add + search_prefixes 'elm_panel_' + # + end + # + end +end +# +# EOF |