mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-15 17:41:45 +00:00
(WIP) SDK: Implement Topology::ChangeState
This commit is contained in:
committed by
Dennis Klein
parent
499ffcd300
commit
18dc536f3d
@@ -10,7 +10,6 @@
|
||||
#define FAIR_MQ_SDK_DDSENVIRONMENT_H
|
||||
|
||||
#include <boost/filesystem.hpp>
|
||||
#include <fairmq/sdk/DDSInfo.h>
|
||||
#include <memory>
|
||||
#include <ostream>
|
||||
|
||||
@@ -27,9 +26,10 @@ class DDSEnvironment
|
||||
public:
|
||||
using Path = boost::filesystem::path;
|
||||
|
||||
/// @brief See fair::mq::sdk::LoadDDSEnv
|
||||
explicit DDSEnvironment(Path config_home = "");
|
||||
DDSEnvironment();
|
||||
explicit DDSEnvironment(Path);
|
||||
|
||||
auto GetLocation() const -> Path;
|
||||
auto GetConfigHome() const -> Path;
|
||||
|
||||
friend auto operator<<(std::ostream& os, DDSEnvironment env) -> std::ostream&;
|
||||
@@ -38,6 +38,8 @@ class DDSEnvironment
|
||||
std::shared_ptr<Impl> fImpl;
|
||||
};
|
||||
|
||||
using DDSEnv = DDSEnvironment;
|
||||
|
||||
} // namespace sdk
|
||||
} // namespace mq
|
||||
} // namespace fair
|
||||
|
Reference in New Issue
Block a user