18 lines
364 B
C++
18 lines
364 B
C++
#ifndef __OPTION_H__
|
|
#define __OPTION_H__
|
|
|
|
#include <chrono>
|
|
#include <nng/nng.h>
|
|
|
|
namespace Nng {
|
|
|
|
template <typename T>
|
|
struct Option {
|
|
constexpr Option(const char *opt) : option(opt) {};
|
|
const char *option;
|
|
};
|
|
|
|
inline constexpr Option<std::chrono::milliseconds> RecvTimeout(NNG_OPT_RECVTIMEO);
|
|
} // namespace Nng
|
|
|
|
#endif // __OPTION_H__
|