Restructure O1 module to run as a thread in O-DU High binary [Issue-Id: ODUHIGH-297]
[o-du/l2.git] / src / o1 / GlobalDefs.hpp
index 0f8d42a..759e725 100644 (file)
@@ -22,6 +22,9 @@
 #define __GLOBAL_DEFS_HPP__
 
 #include <syslog.h>
+#include <string>
+
+using std::string;
 
 #define O1_LOG(...) ( {\
                printf(__VA_ARGS__);\
 class O1 
 {
    public:
-   static const short TCP_PORT;
    static const int   SUCCESS;
    static const int   FAILURE;
+   static const string ALARM_SOCK_PATH;
+   static const int CPU_CORE;
 };
 
 #endif