add missing include guard

This commit is contained in:
Dennis Klein 2017-05-05 18:58:22 +02:00 committed by Mohammad Al-Turany
parent 3dc5fd1d6e
commit 04bc7d4bfd

View File

@ -11,6 +11,9 @@
/// @since 2017-03-30
/// @brief Parser implementation for key-value subopt format
#ifndef FAIRMQPARSER_SUBOPT_H
#define FAIRMQPARSER_SUBOPT_H
#include "FairMQParser.h" // for FairMQMap
#include <boost/program_options.hpp>
#include <cstring>
@ -69,3 +72,6 @@ struct SUBOPT {
FairMQMap UserParser(const po::variables_map& omap, const std::string& deviceId, const std::string& rootNode = "fairMQOptions");
};
}
#endif /* FAIRMQPARSER_SUBOPT_H */