Adding initial code jy.oak@samsung.com
[ric-app/kpimon.git] / src / KPI-Monitoring / cu_cp_resource_status_report_helper.hpp
diff --git a/src/KPI-Monitoring/cu_cp_resource_status_report_helper.hpp b/src/KPI-Monitoring/cu_cp_resource_status_report_helper.hpp
new file mode 100755 (executable)
index 0000000..f63976f
--- /dev/null
@@ -0,0 +1,41 @@
+/*\r
+==================================================================================\r
+        Copyright (c) 2018-2019 AT&T Intellectual Property.\r
+\r
+   Licensed under the Apache License, Version 2.0 (the "License");\r
+   you may not use this file except in compliance with the License.\r
+   You may obtain a copy of the License at\r
+\r
+       http://www.apache.org/licenses/LICENSE-2.0\r
+\r
+   Unless required by applicable law or agreed to in writing, software\r
+   distributed under the License is distributed on an "AS IS" BASIS,\r
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+   See the License for the specific language governing permissions and\r
+   limitations under the License.\r
+==================================================================================\r
+*/\r
+\r
+#ifndef CU_CP_RESOURCE_STATUS_REPORT_HELPER_\r
+#define CU_CP_RESOURCE_STATUS_REPORT_HELPER_\r
+  \r
+#include <iostream>\r
+\r
+struct cucp_resource_status {\r
+    cucp_resource_status(void): bhca(0), numberOfUEs(0) {};\r
+    long     bhca;\r
+    long    numberOfUEs;\r
+};\r
+\r
+class cucp_resource_helper {\r
+\r
+public:\r
+    cucp_resource_helper(void): cuCpName(0), cuCpName_size(0), gnbId(0), gnbId_size(0) {};\r
+    unsigned char *cuCpName;\r
+    int cuCpName_size;\r
+    unsigned char *gnbId;\r
+    int gnbId_size;\r
+    cucp_resource_status cuCpResourceStatus;\r
+};\r
+\r
+#endif\r