diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 15:31:46 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 15:31:46 +0100 |
commit | 2d73b282cb57c14a2dc9b8d4a052643c48bae892 (patch) | |
tree | e597479818ed648f0d902548280a95ac72078398 /lib/efl/elm/elm_clock.rb | |
parent | da1ba75528a8366db7a3d09a8c67070dd0b47b90 (diff) | |
download | ffi-efl-2d73b282cb57c14a2dc9b8d4a052643c48bae892.zip ffi-efl-2d73b282cb57c14a2dc9b8d4a052643c48bae892.tar.gz |
parse elm_clock.h, generate elm_clock.rb
Diffstat (limited to 'lib/efl/elm/elm_clock.rb')
-rw-r--r-- | lib/efl/elm/elm_clock.rb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/efl/elm/elm_clock.rb b/lib/efl/elm/elm_clock.rb new file mode 100644 index 0000000..4ebd02a --- /dev/null +++ b/lib/efl/elm/elm_clock.rb @@ -0,0 +1,22 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/elm/elm_object' +require 'efl/native/elm/elm_clock' +# +module Efl + # + module Elm + # + class ElmClock < ElmObject + # + include Helper + constructor :elm_clock_add + search_prefixes 'elm_clock_' + # + end + # + end +end +# +# EOF |