#ifndef __OPTION_H__ #define __OPTION_H__ #include #include namespace Nng { template struct Option { constexpr Option(const char *opt) : option(opt) {}; const char *option; }; inline constexpr Option RecvTimeout(NNG_OPT_RECVTIMEO); } // namespace Nng #endif // __OPTION_H__