Dependencies:   mbed

RTno/InPortBase.h

Committer:
nucho
Date:
2011-07-29
Revision:
0:a70ea71286b6

File content as of revision 0:a70ea71286b6:

/*******************************************
 * InPortBase.h
 * @author Yuki Suga
 * @copyright Yuki Suga (ysuga.net) Nov, 10th, 2010.
 * @license LGPLv3
 *****************************************/

#ifndef INPORT_BASE_HEADER_INCLUDED
#define INPORT_BASE_HEADER_INCLUDED

#include "PortBase.h"

class InPortBase : public PortBase {
 public:

 public:
 InPortBase(char *name) : PortBase(name){}

  //  virtual bool isNew() = 0;
  //  virtual bool read(char* dst, int size) = 0;

};
#endif