OpenCOVER
input_const.h
Go to the documentation of this file.
1/* This file is part of COVISE.
2
3 You can use it under the terms of the GNU Lesser General Public License
4 version 2.1 or later, see lgpl-2.1.txt.
5
6 * License: LGPL 2+ */
7
8#ifndef INPUT_CONST_H
9#define INPUT_CONST_H
10
11#include "inputdevice.h"
12
13namespace opencover
14{
15
16class COVEREXPORT ConstInputDevice : public InputDevice
17{
18
19public:
20 ConstInputDevice(const std::string &name);
21
22 bool needsThread() const;
23};
24}
25#endif
Definition: ARToolKit.h:33
Definition: input_const.h:17
ConstInputDevice(const std::string &name)
The InputDevice class interacts with input hardware.
Definition: inputdevice.h:38