MMDVMHost-Private/NullDisplay.cpp

90 lines
1.8 KiB
C++
Raw Normal View History

2016-01-14 19:45:04 +01: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.
*/
#include "NullDisplay.h"
CNullDisplay::CNullDisplay() :
CDisplay()
2016-01-14 19:45:04 +01:00
{
}
CNullDisplay::~CNullDisplay()
{
}
bool CNullDisplay::open()
{
return true;
}
void CNullDisplay::setIdleInt()
2016-01-14 19:45:04 +01:00
{
}
void CNullDisplay::setErrorInt(const char* text)
2016-03-21 23:47:58 +01:00
{
}
void CNullDisplay::setLockoutInt()
2016-03-03 19:01:01 +01:00
{
}
void CNullDisplay::writeDStarInt(const char* my1, const char* my2, const char* your, const char* type, const char* reflector)
2016-01-14 19:45:04 +01:00
{
}
void CNullDisplay::clearDStarInt()
2016-01-14 19:45:04 +01:00
{
}
void CNullDisplay::writeDMRInt(unsigned int slotNo, const std::string& src, bool group, const std::string& dst, const char* type)
2016-01-14 19:45:04 +01:00
{
}
void CNullDisplay::clearDMRInt(unsigned int slotNo)
2016-01-14 19:45:04 +01:00
{
}
void CNullDisplay::writeFusionInt(const char* source, const char* dest, const char* type, const char* origin)
2016-01-14 19:45:04 +01:00
{
}
void CNullDisplay::clearFusionInt()
2016-01-14 19:45:04 +01:00
{
}
2016-09-12 21:23:50 +02:00
void CNullDisplay::writeP25Int(const char* source, bool group, unsigned int dest, const char* type)
2016-09-12 19:12:32 +02:00
{
}
void CNullDisplay::clearP25Int()
{
}
void CNullDisplay::writeCWInt()
{
}
2016-09-15 15:17:51 +02:00
void CNullDisplay::clearCWInt()
{
}
2016-01-14 19:45:04 +01:00
void CNullDisplay::close()
{
}