OpenCOVER
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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 
13 namespace opencover
14 {
15 
16 class COVEREXPORT ConstInputDevice : public InputDevice
17 {
18 
19 public:
20  ConstInputDevice(const std::string &name);
21 
22  bool needsThread() const;
23 };
24 }
25 #endif
The InputDevice class interacts with input hardware.
Definition: inputdevice.h:37
Definition: input_const.h:16