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

[GL/SensorData] Remove unused constructor.

parent ea93819b
No related branches found
No related tags found
Loading
...@@ -43,16 +43,6 @@ SensorData::SensorData(std::vector<std::size_t> time_steps) ...@@ -43,16 +43,6 @@ SensorData::SensorData(std::vector<std::size_t> time_steps)
} }
} }
SensorData::SensorData(std::size_t first_timestep,
std::size_t last_timestep,
std::size_t step_size)
: _start(first_timestep),
_end(last_timestep),
_step_size(step_size),
_time_unit(TimeStepType::NONE)
{
}
SensorData::~SensorData() SensorData::~SensorData()
{ {
for (std::vector<float>* vec : _data_vecs) for (std::vector<float>* vec : _data_vecs)
......
...@@ -67,9 +67,6 @@ public: ...@@ -67,9 +67,6 @@ public:
/// Constructor using a time step vector valid for all time series that will be added later /// Constructor using a time step vector valid for all time series that will be added later
explicit SensorData(std::vector<std::size_t> time_steps); explicit SensorData(std::vector<std::size_t> time_steps);
/// Constructor using time step bounds for all time series that will be added later
SensorData(std::size_t first_timestep, std::size_t last_timestep, std::size_t step_size);
~SensorData(); ~SensorData();
/// Adds a time series that needs to conform to the time step vector specified in the constructor. /// Adds a time series that needs to conform to the time step vector specified in the constructor.
......
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