Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers OutPortBase.h Source File

OutPortBase.h

00001 /*******************************************
00002  * OutPortBase.h
00003  * @author Yuki Suga
00004  * @copyright Yuki Suga (ysuga.net) Nov, 10th, 2010.
00005  * @license LGPLv3
00006  *****************************************/
00007 
00008 
00009 #ifndef OUTPORT_BASE_HEADER_INCLUDED
00010 #define OUTPORT_BASE_HEADER_INCLUDED
00011 
00012 #include "PortBase.h"
00013 
00014 class OutPortBase : public PortBase {
00015 
00016  public:
00017  OutPortBase(char* name): PortBase(name) {}
00018 
00019  public:
00020   //  virtual bool write(char* src, int size) = 0;
00021 
00022 };
00023 
00024 #endif