diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 16:35:43 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 16:35:43 +0100 |
commit | 6c9e09c5e7d57353e079462d3d072a2594d04b81 (patch) | |
tree | 2aa7146904b0dcac212679075c25d0a657666557 /lib/efl/elm | |
parent | a8fae94a3830af2de5a1b3be1bdf3eb558afd039 (diff) | |
download | ffi-efl-6c9e09c5e7d57353e079462d3d072a2594d04b81.zip ffi-efl-6c9e09c5e7d57353e079462d3d072a2594d04b81.tar.gz |
parse elm_colorselector.h, generate elm_colorselector.rb
Diffstat (limited to 'lib/efl/elm')
-rw-r--r-- | lib/efl/elm/elm_colorselector.rb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/efl/elm/elm_colorselector.rb b/lib/efl/elm/elm_colorselector.rb new file mode 100644 index 0000000..e04ddeb --- /dev/null +++ b/lib/efl/elm/elm_colorselector.rb @@ -0,0 +1,22 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/elm/elm_object' +require 'efl/native/elm/elm_colorselector' +# +module Efl + # + module Elm + # + class ElmColorSelector < ElmObject + # + include Helper + constructor :elm_colorselector_add + search_prefixes 'elm_colorselector_' + # + end + # + end +end +# +# EOF |