-#ifndef __UTILS_H__
-#define __UTILS_H__
-
-#include <string>
+#pragma once
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wold-style-cast"
#include "stg/OBJECT_IDENTIFIER.h"
#include "stg/SMUX-PDUs.h"
#include "stg/GetResponse-PDU.h"
+#pragma GCC diagnostic pop
+
+#include <string>
bool String2OI(const std::string & str, OBJECT_IDENTIFIER_t * oi);
-std::string OI2String(OBJECT_IDENTIFIER_t * oi);
bool SendOpenPDU(int fd);
bool SendClosePDU(int fd);
bool SendRReqPDU(int fd);
const PDU_t * getRequest,
int errorStatus,
int errorIndex);
-
-#endif