diff --git a/src/RubberBandStretcher.cpp b/src/RubberBandStretcher.cpp index 19d6ea1..e9851a7 100644 --- a/src/RubberBandStretcher.cpp +++ b/src/RubberBandStretcher.cpp @@ -23,7 +23,6 @@ #include "StretcherImpl.h" -using namespace std; namespace RubberBand { @@ -122,7 +121,7 @@ RubberBandStretcher::setMaxProcessSize(size_t samples) } void -RubberBandStretcher::setKeyFrameMap(const map &mapping) +RubberBandStretcher::setKeyFrameMap(const std::map &mapping) { m_d->setKeyFrameMap(mapping); } @@ -177,19 +176,19 @@ RubberBandStretcher::getInputIncrement() const return m_d->getInputIncrement(); } -vector +std::vector RubberBandStretcher::getOutputIncrements() const { return m_d->getOutputIncrements(); } -vector +std::vector RubberBandStretcher::getPhaseResetCurve() const { return m_d->getPhaseResetCurve(); } -vector +std::vector RubberBandStretcher::getExactTimePoints() const { return m_d->getExactTimePoints();