mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-11-05 14:57:30 +01:00
47385eabf7
git-svn-id: file:///home/svn/incoming/trunk@2393 4d416f70-5f16-0410-b530-b9f4589650da
39 lines
395 B
Ruby
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
|