dummyport.h
1 /***************************************************************************
2  Copyright (C) 2002-2015 Kentaro Kitagawa
3  kitagawa@phys.s.u-tokyo.ac.jp
4 
5  This program is free software; you can redistribute it and/or
6  modify it under the terms of the GNU Library General Public
7  License as published by the Free Software Foundation; either
8  version 2 of the License, or (at your option) any later version.
9 
10  You should have received a copy of the GNU Library General
11  Public License and a list of authors along with this program;
12  see the files COPYING and AUTHORS.
13 ***************************************************************************/
14 #ifndef DUMMYPORT_H_
15 #define DUMMYPORT_H_
16 #include "charinterface.h"
17 
18 #include <fstream>
19 
20 class XDummyPort : public XPort {
21 public:
22  XDummyPort(XCharInterface *interface);
23  virtual ~XDummyPort();
24  virtual void open(const XCharInterface *pInterface) throw (XInterface::XCommError &);
25  virtual void send(const char *str) throw (XInterface::XCommError &);
26  virtual void write(const char *sendbuf, int size) throw (XInterface::XCommError &);
27  virtual void receive() throw (XInterface::XCommError &);
28  virtual void receive(unsigned int length) throw (XInterface::XCommError &);
29 private:
30  std::ofstream m_stream;
31 };
32 
33 #endif /*DUMMYPORT_H_*/

Generated for KAME4 by  doxygen 1.8.3