This repository has been archived on 2022-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
Marlin-Artillery-M600/ArduinoAddons/Arduino_1.x.x/rambo/cores/arduino/Server.h

10 lines
111 B
C
Raw Normal View History

2013-08-03 19:42:34 +02:00
#ifndef server_h
#define server_h
class Server : public Print {
public:
virtual void begin() =0;
};
#endif