1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-11-05 14:57:30 +01:00
metasploit-framework/lib/rex/post/u_i.rb
Matt Miller 47385eabf7 moved dir/file/filestat under fs
git-svn-id: file:///home/svn/incoming/trunk@2393 4d416f70-5f16-0410-b530-b9f4589650da
2005-04-17 07:17:52 +00:00

39 lines
395 B
Ruby

#!/usr/bin/ruby
module Rex
module Post
###
#
# UI
# --
#
# User-interface interaction base class.
#
###
class UI
def disable_keyboard
raise NotImplementedError
end
def enable_keyboard
raise NotImplementedError
end
def disable_mouse
raise NotImplementedError
end
def enable_mouse
raise NotImplementedError
end
def idle_time
raise NotImplementedError
end
end
end; end