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.
Fork of GMMP by
Network/TCPclient/Print.h
- Committer:
- lesmin
- Date:
- 2015-07-23
- Revision:
- 0:32c20cfb2b30
File content as of revision 0:32c20cfb2b30:
#ifndef Print_h
#define Print_h
#include <stddef.h>
#include <stdint.h>
class Print {
public:
size_t print(const char* s);
size_t print(char c);
size_t print(int n);
size_t print(long n);
size_t print(double n, int digits = 2);
size_t println(const char* s);
size_t println(char c);
size_t println(int n);
size_t println(long n);
size_t println(double n, int digits = 2);
size_t println();
virtual size_t write(uint8_t c) = 0;
virtual size_t write(const uint8_t* buf, size_t size);
};
#endif
