diff options
author | David A. Mellis <d.mellis@arduino.cc> | 2009-11-07 17:54:56 +0000 |
---|---|---|
committer | David A. Mellis <d.mellis@arduino.cc> | 2009-11-07 17:54:56 +0000 |
commit | 6005c59ad03446153c66a991f01ac91c31d98dac (patch) | |
tree | 4c599359fd35066a81b8b9fe99042e325c03c6ed /libraries/Ethernet/Server.h | |
parent | 584dece7b0c982de8731f7400c94b5034aef89e7 (diff) |
Moving libraries out of arduino platform / core directory and to top-level.
Diffstat (limited to 'libraries/Ethernet/Server.h')
-rw-r--r-- | libraries/Ethernet/Server.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/libraries/Ethernet/Server.h b/libraries/Ethernet/Server.h deleted file mode 100644 index 73d6a5e..0000000 --- a/libraries/Ethernet/Server.h +++ /dev/null @@ -1,25 +0,0 @@ -#ifndef Server_h -#define Server_h - -extern "C" { - #include "utility/types.h" -} - -#include "Print.h" - -class Client; - -class Server : public Print { -private: - uint16_t _port; - void accept(); -public: - Server(uint16_t); - Client available(); - void begin(); - virtual void write(uint8_t); - virtual void write(const char *str); - virtual void write(const uint8_t *buf, size_t size); -}; - -#endif |