[apps/shared] Inline and constify Interval helpers

This commit is contained in:
Émilie Feral
2019-08-29 17:44:02 +02:00
parent 8f8333c7ae
commit 2d5931b080
2 changed files with 4 additions and 16 deletions

View File

@@ -31,18 +31,6 @@ double Interval::element(int i) {
return m_intervalBuffer[i];
}
double Interval::start() {
return m_start;
}
double Interval::end() {
return m_end;
}
double Interval::step() {
return m_step;
}
void Interval::setStart(double f) {
m_start = f;
m_needCompute = true;