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/LayerStateInterface.h

12 lines
214 B
C

2016-05-28 21:16:32 +00:00
#ifndef LAYERSTATEINTERFACE_H
#define LAYERSTATEINTERFACE_H
2016-06-02 21:06:26 +00:00
/* LayerStateInterface is an interface class
2016-05-28 21:16:32 +00:00
*/
class LayerStateInterface
{
public:
virtual uint8_t getActiveLayer()=0;
};
#endif