First commit

This commit is contained in:
2020-08-01 13:47:02 +03:00
commit ac18805ff4
142 changed files with 8325 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#ifndef __PCF_BUTT__
#define __PCF_BUTT__
class pcf_butt
{
private:
bool lastState;
bool curState;
public:
pcf_butt();
pcf_butt(bool state);
void update(bool state);
bool chngUp(bool state);
bool chngDown(bool state);
~pcf_butt();
};
#endif