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/hardware/Gen7-dist/cores/arduino/Server.h
2014-07-18 18:04:27 +10:00

9 lines
111 B
C++

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