Archived
1
0
This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
keybrd/src/Key_LayeredKeys.cpp

14 lines
227 B
C++
Raw Normal View History

#include "Key_LayeredKeys.h"
void Key_LayeredKeys::press()
{
2016-09-20 01:46:03 +00:00
layerId = refLayerState.getActiveLayer();
2016-09-20 01:46:03 +00:00
ptrsKeys[layerId]->press();
}
void Key_LayeredKeys::release()
{
2016-09-20 01:46:03 +00:00
ptrsKeys[layerId]->release();
}