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