comparison transform/Transform.h @ 930:06579b8ffb7b warnfix_no_size_t

More size_t evisceration and warning fixes
author Chris Cannam
date Tue, 17 Jun 2014 14:49:49 +0100
parents 539740f231fa
children 26cf6d5251ec
comparison
equal deleted inserted replaced
929:59e7fe1b1003 930:06579b8ffb7b
118 void setPluginVersion(QString version); 118 void setPluginVersion(QString version);
119 119
120 QString getProgram() const; 120 QString getProgram() const;
121 void setProgram(QString program); 121 void setProgram(QString program);
122 122
123 size_t getStepSize() const; 123 int getStepSize() const;
124 void setStepSize(size_t s); 124 void setStepSize(int s);
125 125
126 size_t getBlockSize() const; 126 int getBlockSize() const;
127 void setBlockSize(size_t s); 127 void setBlockSize(int s);
128 128
129 WindowType getWindowType() const; 129 WindowType getWindowType() const;
130 void setWindowType(WindowType type); 130 void setWindowType(WindowType type);
131 131
132 RealTime getStartTime() const; 132 RealTime getStartTime() const;
187 ParameterMap m_parameters; 187 ParameterMap m_parameters;
188 ConfigurationMap m_configuration; 188 ConfigurationMap m_configuration;
189 SummaryType m_summaryType; 189 SummaryType m_summaryType;
190 QString m_pluginVersion; 190 QString m_pluginVersion;
191 QString m_program; 191 QString m_program;
192 size_t m_stepSize; 192 int m_stepSize;
193 size_t m_blockSize; 193 int m_blockSize;
194 WindowType m_windowType; 194 WindowType m_windowType;
195 RealTime m_startTime; 195 RealTime m_startTime;
196 RealTime m_duration; 196 RealTime m_duration;
197 float m_sampleRate; 197 float m_sampleRate;
198 }; 198 };