Samchon Framework for CPP  1.0.0
ReporterBase.hpp
1 #pragma once
2 
3 namespace samchon
4 {
5 namespace examples
6 {
7 namespace interaction
8 {
9  class Monitor;
10 
11 namespace base
12 {
13  class ReporterBase
14  {
15  public:
16  virtual auto getMonitor() const -> Monitor* = 0;
17 
18  virtual void sendSystems() = 0;
19  };
20 };
21 };
22 };
23 };