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