]> git.donarmstrong.com Git - qmk_firmware.git/blob - protocol/usb_hid/arduino-1.0.1/cores/arduino/Server.h
Squashed 'tmk_core/' content from commit 05caacc
[qmk_firmware.git] / protocol / usb_hid / arduino-1.0.1 / cores / arduino / Server.h
1 #ifndef server_h
2 #define server_h
3
4 class Server : public Print {
5 public:
6   virtual void begin() =0;
7 };
8
9 #endif