base: split out the VncServer into a VncInput and Server classes

This patch adds a VncInput base class which VncServer inherits from.
Another class can implement the same interface and be used instead
of the VncServer, for example a class that replays Vnc traffic.

--HG--
rename : src/base/vnc/VncServer.py => src/base/vnc/Vnc.py
rename : src/base/vnc/vncserver.cc => src/base/vnc/vncinput.cc
rename : src/base/vnc/vncserver.hh => src/base/vnc/vncinput.hh
This commit is contained in:
Chander Sudanthi
2012-11-02 11:32:00 -05:00
parent ac161c1d72
commit 55787cc0d0
11 changed files with 430 additions and 269 deletions

View File

@@ -41,6 +41,7 @@ Import('*')
Source('convert.cc')
SimObject('VncServer.py')
SimObject('Vnc.py')
Source('vncinput.cc')
Source('vncserver.cc')
DebugFlag('VNC')