1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-11-30 11:24:12 +01:00
Arduino/hardware/arduino/avr/cores/robot/Server.h
Cristian Maglie 3394f61276 Merged 1.0.5
2013-05-29 18:30:36 +02:00

10 lines
111 B
C++

#ifndef server_h
#define server_h
class Server : public Print {
public:
virtual void begin() =0;
};
#endif