Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers InPortBase.h Source File

InPortBase.h

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