diff --git a/.gitignore b/.gitignore index 722d5e7..e136fcf 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ .vscode +.vs \ No newline at end of file diff --git a/include/rosa/agent/Reliability.h b/include/rosa/agent/Reliability.h new file mode 100644 index 0000000..9425a37 --- /dev/null +++ b/include/rosa/agent/Reliability.h @@ -0,0 +1,30 @@ +//===-- rosa/agent/Reliability.h --------------------------------*- C++ -*-===// +// +// The RoSA Framework +// +//===----------------------------------------------------------------------===// +/// +/// \file rosa/agent/Reliability.h +/// +/// \author Daniel Schnoell (danielschnoell@tuwien.ac.at) +/// +/// \date 2019 +/// +/// \brief Declaration of `rosa::Reliability` base-class. +/// +//===----------------------------------------------------------------------===// + +#ifndef ROSA_AGENT_RELIABILITY_H +#define ROSA_AGENT_RELIABILITY_H + +#include "rosa/agent/Functionality.h" + +namespace rosa { +namespace agent { + +class Reliability : public Functionality {}; + +} // namespace agent +} // namespace rosa + +#endif // !ROSA_AGENT_RELIABILITY_H