entity-manager: encapsulation for PerformProbe
class PerformProbe has a bunch of members which are not used outside the
class. Mark those as 'private' to avoid any accidental use in new
code. We can always go back to make things public as necessary, but it
should not be that way for all members.
Tested: Inspection only.
Change-Id: I70a50233870978cc80e05cf5237432efccd4550c
Signed-off-by: Alexander Hansen <alexander.hansen@9elements.com>
diff --git a/src/entity_manager/perform_probe.hpp b/src/entity_manager/perform_probe.hpp
index 4edbe35..2e28d9b 100644
--- a/src/entity_manager/perform_probe.hpp
+++ b/src/entity_manager/perform_probe.hpp
@@ -42,6 +42,7 @@
                  std::shared_ptr<scan::PerformScan>& scanPtr);
     virtual ~PerformProbe();
 
+  private:
     nlohmann::json& recordRef;
     std::vector<std::string> _probeCommand;
     std::string probeName;