summaryrefslogtreecommitdiffstats
path: root/lib/efl/elm/elm_button.rb
blob: dbf9c869f6662c2dc3b928bb1f0b5bbb9f241a57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#! /usr/bin/env ruby
# -*- coding: UTF-8 -*-
#
require 'efl/elm/elm_object'
require 'efl/native/elm/elm_button'
#
module Efl
    #
    module Elm
        #
        class ElmButton < ElmObject
            #
            include Helper
            constructor :elm_button_add
            search_prefixes 'elm_button_'
            #
        end
        #
    end
end
#
# EOF