mirror of
https://github.com/zeldaret/ss
synced 2026-05-23 15:01:38 -04:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
15 lines
180 B
C++
15 lines
180 B
C++
#ifndef D_SOFTWAREKEYBOARD_H
|
|
#define D_SOFTWAREKEYBOARD_H
|
|
|
|
#include "d/d_base.h"
|
|
|
|
class dSKB_c : public dBase_c {
|
|
public:
|
|
dSKB_c();
|
|
virtual ~dSKB_c();
|
|
|
|
private:
|
|
};
|
|
|
|
#endif
|