Skip to content
Snippets Groups Projects
Commit 99533cca authored by Pep Martí Saumell's avatar Pep Martí Saumell
Browse files

Change to wolf std naming style

parent b3a11fad
No related branches found
No related tags found
2 merge requests!4Resolve "Enable Standard Point Positioning (SPP) computation",!2Resolve "Enable Standard Point Positioning (SPP) computation"
This commit is part of merge request !2. Comments created here will be created in the context of that merge request.
......@@ -10,20 +10,20 @@ Observations::Observations()
Observations::~Observations()
{
this->_obsVector.erase(_obsVector.begin(), _obsVector.end());
this->obs_vector_.erase(obs_vector_.begin(), obs_vector_.end());
}
void Observations::clearObservations()
{
this->_obsVector.clear();
this->obs_vector_.clear();
}
void Observations::pushObservation(obsd_t obs)
{
this->_obsVector.push_back(obs);
this->obs_vector_.push_back(obs);
}
std::vector<obsd_t> Observations::getObservations()
{
return this->_obsVector;
return this->obs_vector_;
}
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