diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-28 10:36:41 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-28 10:36:41 +0100 |
commit | 3d5001fdb4cc8a9032f044a781fe20e840e8906e (patch) | |
tree | 03c7077cfdbf2e31e088d110c775aded3924c362 /lib/efl/elm/elm_anchorblock.rb | |
parent | 4711c7bdf973189389a44c7815fa9ca56b18c7c8 (diff) | |
download | ffi-efl-3d5001fdb4cc8a9032f044a781fe20e840e8906e.zip ffi-efl-3d5001fdb4cc8a9032f044a781fe20e840e8906e.tar.gz |
parse elm_anchorblock.h, generate elm_anchorblock.rb
Diffstat (limited to 'lib/efl/elm/elm_anchorblock.rb')
-rw-r--r-- | lib/efl/elm/elm_anchorblock.rb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/efl/elm/elm_anchorblock.rb b/lib/efl/elm/elm_anchorblock.rb new file mode 100644 index 0000000..bd50a7b --- /dev/null +++ b/lib/efl/elm/elm_anchorblock.rb @@ -0,0 +1,22 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/elm/elm_object' +require 'efl/native/elm/elm_anchorblock' +# +module Efl + # + module Elm + # + class ElmAnchorBlock < ElmObject + # + include Helper + constructor :elm_anchorblock_add + search_prefixes 'elm_anchorblock_' + # + end + # + end +end +# +# EOF |