Skip to content
Snippets Groups Projects
Commit 6fa5edc3 authored by Tom Fischer's avatar Tom Fischer
Browse files

[GL/Station] Make attr. private instead of protected.

parent c1833722
No related branches found
No related tags found
No related merge requests found
...@@ -95,11 +95,9 @@ public: ...@@ -95,11 +95,9 @@ public:
/// Returns all the sensor data for this observation site /// Returns all the sensor data for this observation site
const SensorData* getSensorData() const { return this->_sensor_data; } const SensorData* getSensorData() const { return this->_sensor_data; }
protected: private:
std::string _name; std::string _name;
StationType _type{Station::StationType::STATION}; // GeoSys Station Type StationType _type{Station::StationType::STATION}; // GeoSys Station Type
private:
double _station_value{0.0}; double _station_value{0.0};
SensorData* _sensor_data{nullptr}; SensorData* _sensor_data{nullptr};
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment