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