Initial source commit 78/2878/6
authorE. Scott Daniels <daniels@research.att.com>
Thu, 19 Mar 2020 15:36:37 +0000 (11:36 -0400)
committerE. Scott Daniels <daniels@research.att.com>
Thu, 19 Mar 2020 20:52:16 +0000 (16:52 -0400)
commit8cb3c6f5d5062b83f17a5739e0671490beb543de
treebee7f11d5796449ef0cc7cc3b5dfa63fafdedbba
parent19f2d8d8d53677066ab55317cd74425180f33271
Initial source commit

This change contains the initial source for the framework.
This is a work in progress, but should compile and produce
both .deb and .rpm packages (with proper system support).

Currently the support is for RMR based messaging only.

The examples are rough but provide a first cut demonstration
of the base framework.

Issue-ID: RIC-148

Signed-off-by: E. Scott Daniels <daniels@research.att.com>
Change-Id: I9c64aa7db20c2977a4422d7257077e2531cc67d5
22 files changed:
.gitignore [new file with mode: 0644]
CMakeLists.txt [new file with mode: 0644]
README
examples/Makefile [new file with mode: 0644]
examples/README [new file with mode: 0644]
examples/xapp_t1.cpp [new file with mode: 0644]
examples/xapp_t2.cpp [new file with mode: 0644]
src/messaging/CMakeLists.txt [new file with mode: 0644]
src/messaging/README [new file with mode: 0644]
src/messaging/callback.cpp [new file with mode: 0644]
src/messaging/callback.hpp [new file with mode: 0644]
src/messaging/default_cb.cpp [new file with mode: 0644]
src/messaging/default_cb.hpp [new file with mode: 0644]
src/messaging/message.cpp [new file with mode: 0644]
src/messaging/message.hpp [new file with mode: 0644]
src/messaging/messenger.cpp [new file with mode: 0644]
src/messaging/messenger.hpp [new file with mode: 0644]
src/messaging/msg_component.hpp [new file with mode: 0644]
src/xapp/CMakeLists.txt [new file with mode: 0644]
src/xapp/README [new file with mode: 0644]
src/xapp/xapp.cpp [new file with mode: 0644]
src/xapp/xapp.hpp [new file with mode: 0644]