Files
metasploit-gs/lib/msf/ui/driver.rb
T
Ramon de C Valle f124597a56 Code cleanups
git-svn-id: file:///home/svn/framework3/trunk@5773 4d416f70-5f16-0410-b530-b9f4589650da
2008-10-19 21:03:39 +00:00

39 lines
491 B
Ruby

module Msf
module Ui
###
#
# The driver class is an abstract base class that is meant to provide
# a very general set of methods for 'driving' a user interface.
#
###
class Driver
def initialize
end
#
# Executes the user interface, optionally in an asynchronous fashion.
#
def run
raise NotImplementedError
end
#
# Stops executing the user interface.
#
def stop
end
#
# Cleans up any resources associated with the UI driver.
#
def cleanup
end
protected
end
end
end