Remove useless members

This commit is contained in:
Alexey Rybalchenko
2020-05-15 22:20:14 +02:00
parent f4a54ff550
commit 7a67719a3c
8 changed files with 4 additions and 32 deletions

View File

@@ -59,7 +59,7 @@ class TransportFactory final : public fair::mq::TransportFactory
void UnsubscribeFromRegionEvents() override;
std::vector<fair::mq::RegionInfo> GetRegionInfo() override;
Transport GetType() const override;
Transport GetType() const override { return fair::mq::Transport::SHM; }
void Interrupt() override { fManager->Interrupt(); }
void Resume() override { fManager->Resume(); }
@@ -73,7 +73,6 @@ class TransportFactory final : public fair::mq::TransportFactory
private:
void SendHeartbeats();
static Transport fTransportType;
std::string fDeviceId;
std::string fShmId;
void* fZMQContext;