diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-28 12:33:16 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-28 12:33:16 +0100 |
commit | 9a924c6c52e33721b37905a8761348792b70a34b (patch) | |
tree | 8787fae49a26fe4afba89cc59ac5b3cf2443b108 /lib/efl/elm | |
parent | b79cc483a8a09f9589cf7b9ef31bc78d947f24ff (diff) | |
download | ffi-efl-9a924c6c52e33721b37905a8761348792b70a34b.zip ffi-efl-9a924c6c52e33721b37905a8761348792b70a34b.tar.gz |
parse elm_photo.h, generate elm_photo.rb
Diffstat (limited to 'lib/efl/elm')
-rw-r--r-- | lib/efl/elm/elm_photo.rb | 22 | ||||
-rw-r--r-- | lib/efl/elm/elm_photocam.rb | 22 |
2 files changed, 44 insertions, 0 deletions
diff --git a/lib/efl/elm/elm_photo.rb b/lib/efl/elm/elm_photo.rb new file mode 100644 index 0000000..168df54 --- /dev/null +++ b/lib/efl/elm/elm_photo.rb @@ -0,0 +1,22 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/elm/elm_object' +require 'efl/native/elm/elm_photo' +# +module Efl + # + module Elm + # + class ElmPhoto < ElmObject + # + include Helper + constructor :elm_photo_add + search_prefixes 'elm_photo_' + # + end + # + end +end +# +# EOF diff --git a/lib/efl/elm/elm_photocam.rb b/lib/efl/elm/elm_photocam.rb new file mode 100644 index 0000000..92ea9e2 --- /dev/null +++ b/lib/efl/elm/elm_photocam.rb @@ -0,0 +1,22 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/elm/elm_object' +require 'efl/native/elm/elm_photocam' +# +module Efl + # + module Elm + # + class ElmPhotoCam < ElmObject + # + include Helper + constructor :elm_photocam_add + search_prefixes 'elm_photocam_' + # + end + # + end +end +# +# EOF |