diff options
author | Chander Sudanthi <chander.sudanthi@arm.com> | 2012-11-02 11:32:00 -0500 |
---|---|---|
committer | Chander Sudanthi <chander.sudanthi@arm.com> | 2012-11-02 11:32:00 -0500 |
commit | 55787cc0d0ecdbd060f7ee1caaaab90d2482eb67 (patch) | |
tree | fff89ebf048d5afecada34a95d7529ac48361e0b /src/dev/arm/kmi.hh | |
parent | ac161c1d7294fc755b6c06e23f719f577d926695 (diff) | |
download | gem5-55787cc0d0ecdbd060f7ee1caaaab90d2482eb67.tar.xz |
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
Diffstat (limited to 'src/dev/arm/kmi.hh')
-rw-r--r-- | src/dev/arm/kmi.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dev/arm/kmi.hh b/src/dev/arm/kmi.hh index e769a8a46..e2e75cfef 100644 --- a/src/dev/arm/kmi.hh +++ b/src/dev/arm/kmi.hh @@ -50,7 +50,7 @@ #include <list> -#include "base/vnc/vncserver.hh" +#include "base/vnc/vncinput.hh" #include "dev/arm/amba_device.hh" #include "params/Pl050.hh" @@ -118,7 +118,7 @@ class Pl050 : public AmbaIntDevice, public VncKeyboard, public VncMouse bool shiftDown; /** The vnc server we're connected to (if any) */ - VncServer *vnc; + VncInput *vnc; /** If the linux driver has initialized the device yet and thus can we send * mouse data */ |