1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-12-11 22:24:13 +01:00
Arduino/hardware/arduino/cores/robot/Server.h

10 lines
111 B
C
Raw Normal View History

2013-05-17 11:02:00 +02:00
#ifndef server_h
#define server_h
class Server : public Print {
public:
virtual void begin() =0;
};
#endif