Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Server.h « brainwave « cores « avr « marlin « hardware « Arduino_1.5.x « ArduinoAddons - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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