2016-01-14 18:45:04 +00:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if !defined(NULLDISPLAY_H)
|
|
|
|
#define NULLDISPLAY_H
|
|
|
|
|
|
|
|
#include "Display.h"
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
class CNullDisplay : public CDisplay
|
2016-01-14 18:45:04 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
CNullDisplay();
|
|
|
|
virtual ~CNullDisplay();
|
|
|
|
|
|
|
|
virtual bool open();
|
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
virtual void close();
|
2016-03-03 18:01:01 +00:00
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
protected:
|
|
|
|
virtual void setIdleInt();
|
|
|
|
virtual void setErrorInt(const char* text);
|
|
|
|
virtual void setLockoutInt();
|
2016-01-14 18:45:04 +00:00
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
virtual void writeDStarInt(const char* my1, const char* my2, const char* your, const char* type, const char* reflector);
|
|
|
|
virtual void clearDStarInt();
|
2016-01-14 18:45:04 +00:00
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
virtual void writeDMRInt(unsigned int slotNo, const std::string& src, bool group, const std::string& dst, const char* type);
|
|
|
|
virtual void clearDMRInt(unsigned int slotNo);
|
2016-01-14 18:45:04 +00:00
|
|
|
|
2016-05-19 18:08:48 +00:00
|
|
|
virtual void writeFusionInt(const char* source, const char* dest, const char* type, const char* origin);
|
2016-05-09 17:14:27 +00:00
|
|
|
virtual void clearFusionInt();
|
2016-01-14 18:45:04 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|