aboutsummaryrefslogtreecommitdiff
path: root/libraries/Ethernet/EthernetServer.h
diff options
context:
space:
mode:
authorFede85 <f.vanzati@gmail.com>2013-06-26 19:13:04 +0200
committerFede85 <f.vanzati@gmail.com>2013-06-26 19:13:04 +0200
commit4bfbbb3484cbc8ffccb90609e59a04796f618470 (patch)
treedeff26ddc7d25994dc871f3da4286a14c9a7cb73 /libraries/Ethernet/EthernetServer.h
parenta7ba61d1b74c01640de5bd28d2c909d3d31ec650 (diff)
Ethernet, SD and LiquidCrystal to the new library format
Diffstat (limited to 'libraries/Ethernet/EthernetServer.h')
-rw-r--r--libraries/Ethernet/EthernetServer.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/libraries/Ethernet/EthernetServer.h b/libraries/Ethernet/EthernetServer.h
deleted file mode 100644
index 86ccafe..0000000
--- a/libraries/Ethernet/EthernetServer.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef ethernetserver_h
-#define ethernetserver_h
-
-#include "Server.h"
-
-class EthernetClient;
-
-class EthernetServer :
-public Server {
-private:
- uint16_t _port;
- void accept();
-public:
- EthernetServer(uint16_t);
- EthernetClient available();
- virtual void begin();
- virtual size_t write(uint8_t);
- virtual size_t write(const uint8_t *buf, size_t size);
- using Print::write;
-};
-
-#endif