mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-12 16:21:13 +00:00
* move Plugins::Version to fair::mq::tools * fix Parser interface * make device a shared pointer in main * provide std::hash template specialization * fix FairMQ.Plugins/FairMQ.PluginsStatic when run with ctest * fix MQ/serialization example * add --no-as-needed flag * GCC 4 does not support member refs, move to pointer types
31 lines
723 B
C++
31 lines
723 B
C++
#ifndef FAIRMQTOOLS_H_
|
|
#define FAIRMQTOOLS_H_
|
|
|
|
#warning "This header file is deprecated. Include <fairmq/Tools.h> instead. Note, that the namespace FairMQ::tools has been changed to fair::mq::tools in the new header."
|
|
|
|
#include <fairmq/tools/CppSTL.h>
|
|
#include <fairmq/tools/Network.h>
|
|
#include <fairmq/tools/Strings.h>
|
|
#include <fairmq/tools/Version.h>
|
|
|
|
namespace FairMQ
|
|
{
|
|
namespace tools
|
|
{
|
|
|
|
using fair::mq::tools::make_unique;
|
|
using fair::mq::tools::HashEnum;
|
|
|
|
using fair::mq::tools::getHostIPs;
|
|
using fair::mq::tools::getInterfaceIP;
|
|
using fair::mq::tools::getDefaultRouteNetworkInterface;
|
|
|
|
using fair::mq::tools::S;
|
|
|
|
using fair::mq::tools::Version;
|
|
|
|
} // namespace tools
|
|
} // namespace FairMQ
|
|
|
|
#endif // FAIRMQTOOLS_H_
|