blob: f80183d2e5531588a0f9495968dfc6cdcb59e8b5 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef DEVICE_GAMEPAD_GAMEPAD_CONSUMER_H_
#define DEVICE_GAMEPAD_GAMEPAD_CONSUMER_H_
#include "device/gamepad/gamepad_export.h"
#include "device/gamepad/public/cpp/gamepad.h"
namespace device {
class DEVICE_GAMEPAD_EXPORT GamepadConsumer {
public:
GamepadConsumer();
virtual ~GamepadConsumer();
virtual void OnGamepadConnected(unsigned index, const Gamepad& gamepad) = 0;
virtual void OnGamepadDisconnected(unsigned index,
const Gamepad& gamepad) = 0;
};
} // namespace device
#endif // DEVICE_GAMEPAD_GAMEPAD_CONSUMER_H_