diff --git a/apps/ccam/CMakeLists.txt b/apps/ccam/CMakeLists.txt new file mode 100644 index 0000000..6dc3148 --- /dev/null +++ b/apps/ccam/CMakeLists.txt @@ -0,0 +1,4 @@ +ROSA_add_app(ccam ccam.cpp) +ROSA_add_library_dependencies(ccam ROSAConfig) +ROSA_add_library_dependencies(ccam ROSADeluxe) +ROSA_add_library_dependencies(ccam ROSAAgent) diff --git a/apps/ccam/ccam.cpp b/apps/ccam/ccam.cpp new file mode 100644 index 0000000..ab6cfd6 --- /dev/null +++ b/apps/ccam/ccam.cpp @@ -0,0 +1,19 @@ +//===-- apps/ccam/ccam.cpp --------------------------------------*- C++ -*-===// +// +// The RoSA Framework -- Application CCAM +// +//===----------------------------------------------------------------------===// +/// +/// \file apps/ccam/ccam.cpp +/// +/// \author Maximilian Goetzinger (maximilian.goetzinger@tuwien.ac.at) +/// +/// \date 2019 +/// +/// \brief The application CCAM implements the case study from the paper: +/// M. Goetzinger, N. TaheriNejad, H. A. Kholerdi, A. Jantsch, E. Willegger, +/// T. Glatzl, A.M. Rahmani, T.Sauter, P. Liljeberg: Model - Free Condition +/// Monitoring with Confidence +//===----------------------------------------------------------------------===// + +int main(void) { return 0; }