2019-07-16 15:41:12 +00:00
|
|
|
/*!
|
|
|
|
* \file command_event.h
|
|
|
|
* \brief Class that defines a receiver command event
|
|
|
|
* \author Javier Arribas, 2019. jarribas(at)cttc.es
|
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010-2019 (see AUTHORS file for a list of contributors)
|
|
|
|
*
|
|
|
|
* GNSS-SDR is a software defined Global Navigation
|
|
|
|
* Satellite Systems receiver
|
|
|
|
*
|
|
|
|
* This file is part of GNSS-SDR.
|
|
|
|
*
|
2020-02-08 00:20:02 +00:00
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
2019-07-16 15:41:12 +00:00
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2019-09-13 06:56:37 +00:00
|
|
|
#ifndef GNSS_SDR_COMMAND_EVENT_H_
|
|
|
|
#define GNSS_SDR_COMMAND_EVENT_H_
|
2019-07-16 15:41:12 +00:00
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
2019-07-21 10:55:59 +00:00
|
|
|
class Command_Event;
|
2019-07-16 15:41:12 +00:00
|
|
|
|
2019-07-21 10:55:59 +00:00
|
|
|
using command_event_sptr = std::shared_ptr<Command_Event>;
|
2019-07-16 15:41:12 +00:00
|
|
|
|
|
|
|
command_event_sptr command_event_make(int command_id, int event_type);
|
|
|
|
|
2019-07-21 10:55:59 +00:00
|
|
|
class Command_Event
|
2019-07-16 15:41:12 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
int command_id;
|
|
|
|
int event_type;
|
|
|
|
|
|
|
|
private:
|
|
|
|
friend command_event_sptr command_event_make(int command_id, int event_type);
|
2019-07-21 10:55:59 +00:00
|
|
|
Command_Event(int command_id_, int event_type_);
|
2019-07-16 15:41:12 +00:00
|
|
|
};
|
|
|
|
|
2019-09-13 06:56:37 +00:00
|
|
|
#endif // GNSS_SDR_COMMAND_EVENT_H_
|