Dependencies:   mbed QEI

RTno/InPortBase.h

Committer:
nucho
Date:
2011-08-01
Revision:
1:7f0fc0d1f777
Parent:
0:3c49891bc39d

File content as of revision 1:7f0fc0d1f777:

/*******************************************
 * 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