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.
RTno/OutPortBase.h
- Committer:
- nucho
- Date:
- 2011-08-01
- Revision:
- 1:b96a6ff9bb6f
- Parent:
- 0:b14546a3cfab
File content as of revision 1:b96a6ff9bb6f:
/******************************************* * OutPortBase.h * @author Yuki Suga * @copyright Yuki Suga (ysuga.net) Nov, 10th, 2010. * @license LGPLv3 *****************************************/ #ifndef OUTPORT_BASE_HEADER_INCLUDED #define OUTPORT_BASE_HEADER_INCLUDED #include "PortBase.h" class OutPortBase : public PortBase { public: OutPortBase(char* name): PortBase(name) {} public: // virtual bool write(char* src, int size) = 0; }; #endif