Files
kaizen/lib/source/gainput/touch/GainputInputDeviceTouchImpl.h
Simone 4e42229bdd Squashed 'external/gainput/' content from commit 2be0a50
git-subtree-dir: external/gainput
git-subtree-split: 2be0a50089eafcc6fccb66142180082e48f27f4c
2024-01-22 08:51:55 +01:00

23 lines
471 B
C++

#ifndef GAINPUTINPUTDEVICETOUCHIMPL_H_
#define GAINPUTINPUTDEVICETOUCHIMPL_H_
namespace gainput
{
class InputDeviceTouchImpl
{
public:
virtual ~InputDeviceTouchImpl() { }
virtual InputDevice::DeviceVariant GetVariant() const = 0;
virtual InputDevice::DeviceState GetState() const = 0;
virtual void Update(InputDeltaState* delta) = 0;
virtual bool SupportsPressure() const { return false; }
virtual InputState* GetNextInputState() { return 0; }
};
}
#endif