X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/559d32bc2789dc69a7c19598a31f485c6caaff11..b27841d687ec9e84983340b5581376dfb24010ea:/projects/stargazer/plugins/other/smux/types.h diff --git a/projects/stargazer/plugins/other/smux/types.h b/projects/stargazer/plugins/other/smux/types.h index a121bf7a..f6b145f7 100644 --- a/projects/stargazer/plugins/other/smux/types.h +++ b/projects/stargazer/plugins/other/smux/types.h @@ -1,19 +1,22 @@ -#ifndef __TYPES_H__ -#define __TYPES_H__ +#pragma once + +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wold-style-cast" +#include "stg/OBJECT_IDENTIFIER.h" +#pragma GCC diagnostic pop #include #include -#include - -#include "stg/OBJECT_IDENTIFIER.h" +#include -class OID { +class OID +{ public: - OID(const std::string & str); + explicit OID(const std::string & str); OID(const char * str, size_t length); - OID(const std::vector & arcs); + explicit OID(const std::vector & arcs); OID(const unsigned * arcs, size_t length); - OID(OBJECT_IDENTIFIER_t * oid); + explicit OID(OBJECT_IDENTIFIER_t * oid); OID(const OID & rvalue); ~OID(); @@ -53,5 +56,3 @@ bool PrefixLess(const OID & a, const OID & b) { return a.PrefixLess(b); } - -#endif