Adding initial code jy.oak@samsung.com
[ric-app/kpimon.git] / src / E2AP-c / subscription / generic_helpers.hpp
diff --git a/src/E2AP-c/subscription/generic_helpers.hpp b/src/E2AP-c/subscription/generic_helpers.hpp
new file mode 100755 (executable)
index 0000000..8de073b
--- /dev/null
@@ -0,0 +1,49 @@
+/*\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
+\r
+#pragma once\r
+#ifndef GENERIC_HELPERS\r
+#define GENERIC_HELPERS\r
+\r
+#include <cstddef>\r
+\r
+/* Utilities */\r
+\r
+class octet_helper {\r
+\r
+public:\r
+  octet_helper(void):_ref(NULL), _size(0){};\r
+  octet_helper(const void *ref, int size):_ref(ref), _size(size){};\r
+  void set_ref(const void *ref){\r
+    _ref = ref;\r
+  }\r
+  \r
+  void set_size(size_t size){\r
+    _size = size;\r
+  }\r
+  \r
+  const void * get_ref(void){return _ref ; };\r
+  size_t get_size(void) const {return _size ; } ;\r
+\r
+private:\r
+  const void *_ref;\r
+  size_t _size;\r
+};\r
+    \r
+#endif\r