Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
834 | - | 1 | |
2 | ############################################################################### |
||
3 | # |
||
4 | # example.pl - Example Plugin for Mission Cockpit event engine |
||
5 | # |
||
6 | ############################################################################### |
||
7 | # |
||
8 | # 2010-01-30 0.0.1 rw created |
||
9 | # |
||
10 | ############################################################################### |
||
11 | |||
12 | $Version{'plugin/example.pl'} = "0.0.1 - 2010-01-30"; |
||
13 | |||
14 | |||
15 | # say hello |
||
16 | print "Load Plugin: example.pl\n"; |
||
17 | |||
18 | # |
||
19 | # function library for event engine |
||
20 | # |
||
21 | |||
22 | sub MyExample() |
||
23 | { |
||
24 | print "Plugin: Example\n"; |
||
25 | } |