- Timestamp:
- Dec 29, 2015, 4:47:42 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/libraries/core/input/InputDevice.h
r10916 r10990 60 60 //! Only resets the members 61 61 InputDevice(unsigned int id) : bCalibrating_(false), deviceID_(id) { } 62 virtual ~InputDevice() { }62 virtual ~InputDevice() = default; 63 63 //! Returns the device class (derived) name as string 64 64 virtual std::string getClassName() const = 0; … … 99 99 100 100 private: 101 InputDevice(const InputDevice& rhs); //!< Don't use!101 InputDevice(const InputDevice&) = delete; 102 102 103 103 bool bCalibrating_; //!< Whether the device is in calibration mode
Note: See TracChangeset
for help on using the changeset viewer.