source: pacpusframework/branches/2.0-beta1/include/PacpusCityVIP/driver/AbstractSerialPort.h@ 89

Last change on this file since 89 was 89, checked in by morasjul, 11 years ago

PACPUS 2.0 Beta deployed in new branch

Major changes:
-Add communication interface between components
-Add examples for communications interface (TestComponents)
-Move to Qt5 support

  • Property svn:executable set to *
File size: 278 bytes
Line 
1#ifndef ABSTRACTSERIALPORT_H
2#define ABSTRACTSERIALPORT_H
3
4class QString;
5
6namespace pacpus {
7
8class AbstractSerialPort
9{
10public:
11 AbstractSerialPort(QString name);
12 virtual ~AbstractSerialPort();
13};
14
15} // namespace pacpus
16
17#endif // ABSTRACTSERIALPORT_H
Note: See TracBrowser for help on using the repository browser.