From 3fe7c380b90c52c8d94afe2c97d5d384e2f12102 Mon Sep 17 00:00:00 2001 From: edelwud Date: Mon, 4 Apr 2022 16:47:53 +0300 Subject: [PATCH] feat(reporter): initialization --- lib/ReporterService/include/ReporterService.h | 9 +++++++++ lib/ReporterService/src/ReporterService.cpp | 1 + 2 files changed, 10 insertions(+) create mode 100644 lib/ReporterService/include/ReporterService.h create mode 100644 lib/ReporterService/src/ReporterService.cpp diff --git a/lib/ReporterService/include/ReporterService.h b/lib/ReporterService/include/ReporterService.h new file mode 100644 index 0000000..1fa9af5 --- /dev/null +++ b/lib/ReporterService/include/ReporterService.h @@ -0,0 +1,9 @@ +#pragma once + +#include + +class ReporterService { +public: + static std::string DeclareActions(); + static std::string CreateReport(); +}; \ No newline at end of file diff --git a/lib/ReporterService/src/ReporterService.cpp b/lib/ReporterService/src/ReporterService.cpp new file mode 100644 index 0000000..12a0513 --- /dev/null +++ b/lib/ReporterService/src/ReporterService.cpp @@ -0,0 +1 @@ +#include \ No newline at end of file