comparison audioio/PlaySpeedRangeMapper.cpp @ 68:050d764df239

#include <math.h> required on OSX
author Martin Gasser
date Tue, 24 Oct 2006 11:15:51 +0000
parents 06b3c3f437e6
children 883f49d80bd3
comparison
equal deleted inserted replaced
67:0229bec2d2dc 68:050d764df239
15 15
16 #include "PlaySpeedRangeMapper.h" 16 #include "PlaySpeedRangeMapper.h"
17 17
18 #include <iostream> 18 #include <iostream>
19 19
20
21 #include <math.h>
20 22
21 PlaySpeedRangeMapper::PlaySpeedRangeMapper(int minpos, int maxpos) : 23 PlaySpeedRangeMapper::PlaySpeedRangeMapper(int minpos, int maxpos) :
22 m_minpos(minpos), 24 m_minpos(minpos),
23 m_maxpos(maxpos) 25 m_maxpos(maxpos)
24 { 26 {