cassyarduino cassyarduino / UIPEthernet
Committer:
cassyarduino
Date:
Tue Dec 27 11:47:13 2016 +0100
Revision:
1:34b5616a463d
Child:
35:f9f3a91fe4d4
changes

Who changed what in which revision?

UserRevisionLine numberNew contents of line
cassyarduino 1:34b5616a463d 1 /*
cassyarduino 1:34b5616a463d 2 Server.h - Base class that provides Server
cassyarduino 1:34b5616a463d 3 Copyright (c) 2011 Adrian McEwen. All right reserved.
cassyarduino 1:34b5616a463d 4
cassyarduino 1:34b5616a463d 5 Modified (ported to mbed) by Zoltan Hudak <hudakz@inbox.com>
cassyarduino 1:34b5616a463d 6
cassyarduino 1:34b5616a463d 7 This library is free software; you can redistribute it and/or
cassyarduino 1:34b5616a463d 8 modify it under the terms of the GNU Lesser General Public
cassyarduino 1:34b5616a463d 9 License as published by the Free Software Foundation; either
cassyarduino 1:34b5616a463d 10 version 2.1 of the License, or (at your option) any later version.
cassyarduino 1:34b5616a463d 11
cassyarduino 1:34b5616a463d 12 This library is distributed in the hope that it will be useful,
cassyarduino 1:34b5616a463d 13 but WITHOUT ANY WARRANTY; without even the implied warranty of
cassyarduino 1:34b5616a463d 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
cassyarduino 1:34b5616a463d 15 Lesser General Public License for more details.
cassyarduino 1:34b5616a463d 16
cassyarduino 1:34b5616a463d 17 You should have received a copy of the GNU Lesser General Public
cassyarduino 1:34b5616a463d 18 License along with this library; if not, write to the Free Software
cassyarduino 1:34b5616a463d 19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
cassyarduino 1:34b5616a463d 20 */
cassyarduino 1:34b5616a463d 21 #ifndef server_h
cassyarduino 1:34b5616a463d 22 #define server_h
cassyarduino 1:34b5616a463d 23
cassyarduino 1:34b5616a463d 24 class Server
cassyarduino 1:34b5616a463d 25 {
cassyarduino 1:34b5616a463d 26 public:
cassyarduino 1:34b5616a463d 27 virtual void begin(void) = 0;
cassyarduino 1:34b5616a463d 28 };
cassyarduino 1:34b5616a463d 29 #endif