aboutsummaryrefslogtreecommitdiff
path: root/Server.h
diff options
context:
space:
mode:
authorDonald Delmar Davis <don@suspectdevices.com>2013-10-26 15:50:16 -0700
committerDonald Delmar Davis <don@suspectdevices.com>2013-10-26 15:50:16 -0700
commit5bac9dcb4569f107315768677e4c6d580a743171 (patch)
tree2822f877b07b7f6fbfeec54e40448b65ae196c15 /Server.h
parent7edfa511b95c70673b87b988a0cd81eb2f8b168b (diff)
Add all the stuff and update the readme.HEADmaster
Diffstat (limited to 'Server.h')
-rw-r--r--Server.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/Server.h b/Server.h
new file mode 100644
index 0000000..9674c76
--- /dev/null
+++ b/Server.h
@@ -0,0 +1,9 @@
+#ifndef server_h
+#define server_h
+
+class Server : public Print {
+public:
+ virtual void begin() =0;
+};
+
+#endif