comparison src/Analyser.h @ 359:f0b210403369

Merge from branch warnfix_no_size_t
author Chris Cannam
date Wed, 18 Jun 2014 13:48:33 +0100
parents 56109ef020b4
children f76adae8fe5e
comparison
equal deleted inserted replaced
357:d511868c1ffe 359:f0b210403369
98 void setGain(Component c, float gain); 98 void setGain(Component c, float gain);
99 99
100 float getPan(Component c) const; 100 float getPan(Component c) const;
101 void setPan(Component c, float pan); 101 void setPan(Component c, float pan);
102 102
103 void getEnclosingSelectionScope(size_t f, size_t &f0, size_t &f1); 103 void getEnclosingSelectionScope(int f, int &f0, int &f1);
104 104
105 struct FrequencyRange { 105 struct FrequencyRange {
106 FrequencyRange() : min(0), max(0) { } 106 FrequencyRange() : min(0), max(0) { }
107 FrequencyRange(float min_, float max_) : min(min_), max(max_) { } 107 FrequencyRange(float min_, float max_) : min(min_), max(max_) { }
108 bool isConstrained() const { return min != max; } 108 bool isConstrained() const { return min != max; }