chromium/remoting/protocol/input_stub.h

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Interface for a device that receives input events.
// This interface handles input event messages defined in event.proto.

#ifndef REMOTING_PROTOCOL_INPUT_STUB_H_
#define REMOTING_PROTOCOL_INPUT_STUB_H_

namespace remoting::protocol {

class KeyEvent;
class TextEvent;
class MouseEvent;
class TouchEvent;

class InputStub {};

}  // namespace remoting::protocol

#endif  // REMOTING_PROTOCOL_INPUT_STUB_H_