File: enumerations.pm

package info (click to toggle)
libqt-perl 3.008-3.1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 4,212 kB
  • ctags: 1,365
  • sloc: perl: 16,458; sh: 9,686; cpp: 6,711; makefile: 78
file content (15 lines) | stat: -rw-r--r-- 218 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package Qt::enumerations;
#
# Proposed usage:
#
# package MyWidget;
#
# use Qt::enumerations MyInfo => {
#     Foo => 1,
#     Bar => 10,
#     Baz => 64
# };
#
# use Qt::enumerations MyInfo => [qw(Foo Bar Baz)];
#
1;