summaryrefslogtreecommitdiffstats
path: root/protocol/usb_hid/arduino-1.0.1/cores/arduino/Server.h
blob: 9674c7626961e5cd6d3528b17ab3d2f25a6a81ce (plain)
1
2
3
4
5
6
7
8
9
#ifndef server_h
#define server_h

class Server : public Print {
public:
  virtual void begin() =0;
};

#endif