MMDVMHost-Private/DStarHeader.h

59 lines
1.6 KiB
C
Raw Permalink Normal View History

2016-01-26 20:08:17 +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.
*/
#ifndef DStarHeader_H
#define DStarHeader_H
class CDStarHeader {
public:
CDStarHeader(const unsigned char* header);
2016-02-01 21:49:52 +01:00
CDStarHeader();
2016-01-26 20:08:17 +01:00
~CDStarHeader();
bool isRepeater() const;
void setRepeater(bool on);
bool isDataPacket() const;
2016-02-01 21:49:52 +01:00
void setUnavailable(bool on);
2016-01-26 20:08:17 +01:00
void getMyCall1(unsigned char* call1) const;
void getMyCall2(unsigned char* call2) const;
2016-02-01 21:49:52 +01:00
void setMyCall1(const unsigned char* call1);
void setMyCall2(const unsigned char* call2);
2016-01-26 20:08:17 +01:00
void getRPTCall1(unsigned char* call1) const;
void getRPTCall2(unsigned char* call2) const;
void setRPTCall1(const unsigned char* call1);
void setRPTCall2(const unsigned char* call2);
2016-01-26 20:08:17 +01:00
void getYourCall(unsigned char* call) const;
2016-02-01 21:49:52 +01:00
void setYourCall(const unsigned char* call);
2016-01-26 20:08:17 +01:00
void get(unsigned char* header) const;
2016-02-01 21:49:52 +01:00
CDStarHeader& operator=(const CDStarHeader& header);
2016-01-26 20:08:17 +01:00
private:
unsigned char* m_header;
};
#endif