Method: Qt::MetaObject#each_method

Defined in:
lib/ruber/qt_sugar.rb

#each_methodObject



613
614
615
616
617
618
# File 'lib/ruber/qt_sugar.rb', line 613

def each_method
  if block_given?
    method_count.times{|i| yield method i}
  else self.enum_for(:each_method)
  end
end