2015-12-29 17:45:47 -05:00
|
|
|
//
|
|
|
|
// cnotification.h
|
|
|
|
// xlxd
|
|
|
|
//
|
|
|
|
// Created by Jean-Luc on 05/12/2015.
|
|
|
|
// Copyright © 2015 Jean-Luc. All rights reserved.
|
|
|
|
//
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// This file is part of xlxd.
|
|
|
|
//
|
|
|
|
// xlxd 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 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// xlxd 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 Foobar. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef cnotification_h
|
|
|
|
#define cnotification_h
|
|
|
|
|
|
|
|
#include "ccallsign.h"
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// Id
|
|
|
|
#define NOTIFICATION_NONE 0
|
|
|
|
#define NOTIFICATION_CLIENTS 1
|
|
|
|
#define NOTIFICATION_USERS 2
|
|
|
|
#define NOTIFICATION_STREAM_OPEN 3
|
|
|
|
#define NOTIFICATION_STREAM_CLOSE 4
|
2016-12-16 05:28:32 -05:00
|
|
|
#define NOTIFICATION_PEERS 5
|
2015-12-29 17:45:47 -05:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// class
|
|
|
|
|
|
|
|
class CNotification
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// constructor
|
|
|
|
CNotification();
|
|
|
|
CNotification(const CNotification &);
|
|
|
|
CNotification(int);
|
|
|
|
CNotification(int, const CCallsign &);
|
|
|
|
|
|
|
|
// destructor
|
|
|
|
~CNotification() {};
|
|
|
|
|
|
|
|
// get
|
|
|
|
int GetId(void) const { return m_iId; }
|
|
|
|
const CCallsign &GetCallsign(void) const { return m_Callsign; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// data
|
|
|
|
int m_iId;
|
|
|
|
CCallsign m_Callsign;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#endif /* cnotification_h */
|