Revert "Merge branch 'M17_AX25_FM'"

This reverts commit e1427e3e37, reversing
changes made to bcdba292eb.
This commit is contained in:
Jonathan Naylor
2020-12-15 15:52:27 +00:00
parent e1427e3e37
commit 135fd04e0d
115 changed files with 4808 additions and 9583 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016,2020 by Jonathan Naylor G4KLX
* Copyright (C) 2016 by Jonathan Naylor G4KLX
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -22,10 +22,10 @@
#include "SerialPort.h"
#include "Modem.h"
class IModemSerialPort : public ISerialPort {
class CModemSerialPort : public ISerialPort {
public:
IModemSerialPort(IModem* modem);
virtual ~IModemSerialPort();
CModemSerialPort(CModem* modem);
virtual ~CModemSerialPort();
virtual bool open();
@@ -36,7 +36,7 @@ public:
virtual void close();
private:
IModem* m_modem;
CModem* m_modem;
};
#endif