mbed OS5

Fork of UIPEthernet by Zoltan Hudak

Committer:
hudakz
Date:
Thu Nov 20 21:26:54 2014 +0000
Revision:
1:01c2344f98a3
Parent:
uitility/Server.h@0:5350a66d5279
rev. 01

Who changed what in which revision?

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