mirror of https://github.com/nostar/urfd.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
387 B
19 lines
387 B
#pragma once
|
|
|
|
#include "Client.h"
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////
|
|
// class
|
|
|
|
class CImrsClient : public CClient
|
|
{
|
|
public:
|
|
// constructors
|
|
CImrsClient();
|
|
CImrsClient(const CCallsign &callsign, const CIp &ip, char reflectorModule = ' ');
|
|
CImrsClient(const CImrsClient &client);
|
|
|
|
// status
|
|
virtual bool IsAlive(void) const;
|
|
};
|