YSFClients/DGIdGateway/DGIdNetwork.h

68 lines
1.5 KiB
C
Raw Normal View History

2020-08-19 14:01:40 +02:00
/*
2025-03-19 18:49:49 +01:00
* Copyright (C) 2020,2025 by Jonathan Naylor G4KLX
2020-08-19 14:01:40 +02:00
*
* 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
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef DGIdNetwork_H
#define DGIdNetwork_H
2020-08-21 11:23:41 +02:00
#include <string>
2020-08-19 14:01:40 +02:00
2025-03-19 18:49:49 +01:00
enum class DGID_STATUS {
NOTOPEN,
NOTLINKED,
LINKING,
LINKED
2020-09-21 10:52:05 +02:00
};
2020-08-19 14:01:40 +02:00
class CDGIdNetwork {
public:
2025-03-19 18:49:49 +01:00
CDGIdNetwork();
2020-08-19 14:01:40 +02:00
virtual ~CDGIdNetwork() = 0;
virtual std::string getDesc(unsigned int dgId) = 0;
2020-08-21 11:23:41 +02:00
2020-09-22 14:09:03 +02:00
virtual unsigned int getDGId() = 0;
2020-08-19 14:01:40 +02:00
virtual bool open() = 0;
virtual void link() = 0;
2020-09-21 10:52:05 +02:00
virtual DGID_STATUS getStatus() = 0;
2020-08-20 13:16:57 +02:00
virtual void write(unsigned int dgId, const unsigned char* data) = 0;
2020-08-19 14:01:40 +02:00
virtual unsigned int read(unsigned int dgid, unsigned char* data) = 0;
virtual void clock(unsigned int ms) = 0;
virtual void unlink() = 0;
virtual void close() = 0;
// Allowed modes
unsigned char m_modes;
bool m_static;
unsigned int m_rfHangTime;
unsigned int m_netHangTime;
private:
};
#endif