vncinput.cc (11359:b0b976a1ceda) vncinput.cc (11793:ef606668d247)
1/*
2 * Copyright (c) 2010, 2015 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 28 unchanged lines hidden (view full) ---

37 * Authors: Ali Saidi
38 * William Wang
39 */
40
41/** @file
42 * Implementiation of a VNC input
43 */
44
1/*
2 * Copyright (c) 2010, 2015 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 28 unchanged lines hidden (view full) ---

37 * Authors: Ali Saidi
38 * William Wang
39 */
40
41/** @file
42 * Implementiation of a VNC input
43 */
44
45#include "base/vnc/vncinput.hh"
46
45#include <sys/types.h>
46
47#include <sys/types.h>
48
47#include "base/vnc/vncinput.hh"
48#include "base/output.hh" //simout
49#include "base/trace.hh"
50#include "debug/VNC.hh"
51
52using namespace std;
53
54VncInput::VncInput(const Params *p)
55 : SimObject(p), keyboard(NULL), mouse(NULL),

--- 83 unchanged lines hidden ---
49#include "base/output.hh" //simout
50#include "base/trace.hh"
51#include "debug/VNC.hh"
52
53using namespace std;
54
55VncInput::VncInput(const Params *p)
56 : SimObject(p), keyboard(NULL), mouse(NULL),

--- 83 unchanged lines hidden ---