Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
utility/Server.h@3:5b17e4656dd0, 2014-12-20 (annotated)
- Committer:
- hudakz
- Date:
- Sat Dec 20 11:10:40 2014 +0000
- Revision:
- 3:5b17e4656dd0
- Child:
- 4:d774541a34da
02 Name clash with "Ethernet" fixed for LPC1768
Who changed what in which revision?
| User | Revision | Line number | New contents of line | 
|---|---|---|---|
| hudakz | 3:5b17e4656dd0 | 1 | /* | 
| hudakz | 3:5b17e4656dd0 | 2 | Server.h - Base class that provides Server | 
| hudakz | 3:5b17e4656dd0 | 3 | Copyright (c) 2011 Adrian McEwen. All right reserved. | 
| hudakz | 3:5b17e4656dd0 | 4 | |
| hudakz | 3:5b17e4656dd0 | 5 | Modified (ported to mbed) by Zoltan Hudak <hudakz@inbox.com> | 
| hudakz | 3:5b17e4656dd0 | 6 | |
| hudakz | 3:5b17e4656dd0 | 7 | This library is free software; you can redistribute it and/or | 
| hudakz | 3:5b17e4656dd0 | 8 | modify it under the terms of the GNU Lesser General Public | 
| hudakz | 3:5b17e4656dd0 | 9 | License as published by the Free Software Foundation; either | 
| hudakz | 3:5b17e4656dd0 | 10 | version 2.1 of the License, or (at your option) any later version. | 
| hudakz | 3:5b17e4656dd0 | 11 | |
| hudakz | 3:5b17e4656dd0 | 12 | This library is distributed in the hope that it will be useful, | 
| hudakz | 3:5b17e4656dd0 | 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 
| hudakz | 3:5b17e4656dd0 | 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 
| hudakz | 3:5b17e4656dd0 | 15 | Lesser General Public License for more details. | 
| hudakz | 3:5b17e4656dd0 | 16 | |
| hudakz | 3:5b17e4656dd0 | 17 | You should have received a copy of the GNU Lesser General Public | 
| hudakz | 3:5b17e4656dd0 | 18 | License along with this library; if not, write to the Free Software | 
| hudakz | 3:5b17e4656dd0 | 19 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | 
| hudakz | 3:5b17e4656dd0 | 20 | */ | 
| hudakz | 3:5b17e4656dd0 | 21 | #ifndef server_h | 
| hudakz | 3:5b17e4656dd0 | 22 | #define server_h | 
| hudakz | 3:5b17e4656dd0 | 23 | |
| hudakz | 3:5b17e4656dd0 | 24 | //class Server : public Print { | 
| hudakz | 3:5b17e4656dd0 | 25 | class Server | 
| hudakz | 3:5b17e4656dd0 | 26 | { | 
| hudakz | 3:5b17e4656dd0 | 27 | public: | 
| hudakz | 3:5b17e4656dd0 | 28 | virtual void begin(void) = 0; | 
| hudakz | 3:5b17e4656dd0 | 29 | }; | 
| hudakz | 3:5b17e4656dd0 | 30 | #endif |