Method: Qt::MetaObject#enumerators
- Defined in:
- lib/Qt/qtruby4.rb
#enumerators(inherits = false) ⇒ Object
1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 |
# File 'lib/Qt/qtruby4.rb', line 1512 def enumerators(inherits = false) res = [] if inherits for e in 0...enumeratorCount() res.push enumerator(e) end else for e in enumeratorOffset()...enumeratorCount() res.push enumerator(e) end end return res end |