mirror of
https://code.semirocket.science/wrapsix
synced 2024-11-10 08:10:59 +02:00
21 lines
200 B
Ruby
21 lines
200 B
Ruby
|
#####
|
||
|
## WrapSix
|
||
|
###
|
||
|
#> lib/wrapper.rb
|
||
|
#~ WrapSix Wrapper
|
||
|
####
|
||
|
# Author: Michal Zima, 2008
|
||
|
# E-mail: xhire@tuxportal.cz
|
||
|
#####
|
||
|
|
||
|
class Wrapper
|
||
|
def initializer
|
||
|
end
|
||
|
|
||
|
def start
|
||
|
end
|
||
|
|
||
|
def exit
|
||
|
end
|
||
|
end
|