├── .github └── workflows │ ├── cmake.yml │ └── format.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── data ├── PresentationScreenshot.png └── SlideTitle.png ├── examples ├── CMakeLists.txt ├── custom_queue_example │ ├── CMakeLists.txt │ └── customqueuemain.cpp └── everlog │ ├── CMakeLists.txt │ └── everlogmain.cpp ├── include └── rtlog │ └── rtlog.h └── test ├── CMakeLists.txt └── test_rtlog.cpp /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjappl/rtlog-cpp/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjappl/rtlog-cpp/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjappl/rtlog-cpp/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjappl/rtlog-cpp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjappl/rtlog-cpp/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjappl/rtlog-cpp/HEAD/README.md -------------------------------------------------------------------------------- /data/PresentationScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjappl/rtlog-cpp/HEAD/data/PresentationScreenshot.png -------------------------------------------------------------------------------- /data/SlideTitle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjappl/rtlog-cpp/HEAD/data/SlideTitle.png -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjappl/rtlog-cpp/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/custom_queue_example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjappl/rtlog-cpp/HEAD/examples/custom_queue_example/CMakeLists.txt -------------------------------------------------------------------------------- /examples/custom_queue_example/customqueuemain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjappl/rtlog-cpp/HEAD/examples/custom_queue_example/customqueuemain.cpp -------------------------------------------------------------------------------- /examples/everlog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjappl/rtlog-cpp/HEAD/examples/everlog/CMakeLists.txt -------------------------------------------------------------------------------- /examples/everlog/everlogmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjappl/rtlog-cpp/HEAD/examples/everlog/everlogmain.cpp -------------------------------------------------------------------------------- /include/rtlog/rtlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjappl/rtlog-cpp/HEAD/include/rtlog/rtlog.h -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjappl/rtlog-cpp/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/test_rtlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjappl/rtlog-cpp/HEAD/test/test_rtlog.cpp --------------------------------------------------------------------------------