diff options
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  | 
