From 6fa5edc3d86dfead7a2395d78fc5cd919c2b846c Mon Sep 17 00:00:00 2001 From: Thomas Fischer <thomas.fischer@ufz.de> Date: Mon, 21 Jun 2021 13:18:10 +0200 Subject: [PATCH] [GL/Station] Make attr. private instead of protected. --- GeoLib/Station.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/GeoLib/Station.h b/GeoLib/Station.h index d85aace9603..875998dcd6c 100644 --- a/GeoLib/Station.h +++ b/GeoLib/Station.h @@ -95,11 +95,9 @@ public: /// Returns all the sensor data for this observation site const SensorData* getSensorData() const { return this->_sensor_data; } -protected: +private: std::string _name; StationType _type{Station::StationType::STATION}; // GeoSys Station Type - -private: double _station_value{0.0}; SensorData* _sensor_data{nullptr}; }; -- GitLab