aboutsummaryrefslogtreecommitdiff
path: root/cores/arduino/Server.h
diff options
context:
space:
mode:
authorCristian Maglie <c.maglie@bug.st>2014-10-01 13:29:29 +0200
committerCristian Maglie <c.maglie@bug.st>2014-10-01 13:29:29 +0200
commit03ed6cba91f8a9fe16662f615ad0e5f4f1818079 (patch)
treecbb0c548098fea8b2452a09be3469b39303f44f2 /cores/arduino/Server.h
parentf1d5c050b07947c51516a83c03e65d2777ed5ca6 (diff)
parent62045646a1a5e433effa0151a3b57acd9b6dc1af (diff)
Merge pull request #2330 from spiritinlife/ide-1.5.x
Add #include "Print.h" in Server.h Ide 1.5.x
Diffstat (limited to 'cores/arduino/Server.h')
-rw-r--r--cores/arduino/Server.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/cores/arduino/Server.h b/cores/arduino/Server.h
index 77c415c..69e3e39 100644
--- a/cores/arduino/Server.h
+++ b/cores/arduino/Server.h
@@ -20,6 +20,8 @@
#ifndef server_h
#define server_h
+#include "Print.h"
+
class Server : public Print {
public:
virtual void begin() =0;