HelloWorld E2SM source
[ric-app/hw.git] / src / xapp-asn / e2ap / e2ap_indication.hpp
index af43086..6c8abf1 100644 (file)
@@ -1,7 +1,7 @@
 /*
 ==================================================================================
 
-        Copyright (c) 2018-2019 AT&T Intellectual Property.
+        Copyright (c) 2019-2020 AT&T Intellectual Property.
 
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
 #include <errno.h>
 #include <mdclog/mdclog.h>
 #include <sstream>
-#include <E2N_E2AP-PDU.h>
-#include <E2N_InitiatingMessage.h>
-#include <E2N_RICindication.h>
-#include <E2N_ProtocolIE-Field.h>
+#include <E2AP-PDU.h>
+#include <InitiatingMessage.h>
+#include <RICindication.h>
+#include <ProtocolIE-Field.h>
 #include "e2ap_indication_helper.hpp"
 
 #define NUM_INDICATION_IES 8
@@ -48,16 +48,16 @@ public:
   ~ric_indication(void);
   
   bool encode_e2ap_indication(unsigned char *, size_t *,  ric_indication_helper &);
-  E2N_InitiatingMessage_t * get_message (void) ;
-  bool set_fields(E2N_InitiatingMessage_t *, ric_indication_helper &);
-  bool get_fields(E2N_InitiatingMessage_t *, ric_indication_helper &);
+  InitiatingMessage_t * get_message (void) ;
+  bool set_fields(InitiatingMessage_t *, ric_indication_helper &);
+  bool get_fields(InitiatingMessage_t *, ric_indication_helper &);
   std::string get_error(void) const {return error_string ; };
   
 private:
   
-  E2N_E2AP_PDU_t * e2ap_pdu_obj;
-  E2N_InitiatingMessage_t *initMsg;
-  E2N_RICindication_IEs_t *IE_array;
+  E2AP_PDU_t * e2ap_pdu_obj;
+  InitiatingMessage_t *initMsg;
+  RICindication_IEs_t *IE_array;
   std::string error_string;
   char errbuf[128];
   size_t errbuf_len = 128;