From d2a90370d587e9ae9e7d6148dcc765a53a32b3cc Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Wed, 24 Jun 2020 11:34:14 +0200 Subject: [PATCH] Sort private members --- src/algorithms/PVT/libs/monitor_pvt_udp_sink.h | 4 ++-- src/algorithms/channel/adapters/channel.h | 9 ++++----- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/src/algorithms/PVT/libs/monitor_pvt_udp_sink.h b/src/algorithms/PVT/libs/monitor_pvt_udp_sink.h index 1a11f6e1e..751972fd1 100644 --- a/src/algorithms/PVT/libs/monitor_pvt_udp_sink.h +++ b/src/algorithms/PVT/libs/monitor_pvt_udp_sink.h @@ -41,11 +41,11 @@ public: bool write_monitor_pvt(const Monitor_Pvt* monitor_pvt); private: + Serdes_Monitor_Pvt serdes; b_io_context io_context; boost::asio::ip::udp::socket socket; - boost::system::error_code error; std::vector endpoints; - Serdes_Monitor_Pvt serdes; + boost::system::error_code error; bool use_protobuf; }; diff --git a/src/algorithms/channel/adapters/channel.h b/src/algorithms/channel/adapters/channel.h index 921067f79..2b27be166 100644 --- a/src/algorithms/channel/adapters/channel.h +++ b/src/algorithms/channel/adapters/channel.h @@ -84,22 +84,21 @@ public: void msg_handler_events(pmt::pmt_t msg); private: + Gnss_Synchro gnss_synchro_{}; + Gnss_Signal gnss_signal_; std::shared_ptr acq_; std::shared_ptr trk_; std::shared_ptr nav_; std::shared_ptr channel_fsm_; channel_msg_receiver_cc_sptr channel_msg_rx_; - + Concurrent_Queue* queue_; std::string role_; std::string implementation_; std::mutex mx_; + uint32_t channel_; bool connected_; bool repeat_; bool flag_enable_fpga; - uint32_t channel_; - Gnss_Synchro gnss_synchro_{}; - Gnss_Signal gnss_signal_; - Concurrent_Queue* queue_; }; #endif // GNSS_SDR_CHANNEL_H