16 lines
273 B
C
16 lines
273 B
C
|
#pragma once
|
||
|
#include "FloatParameter.h"
|
||
|
class IntFloatParameter :
|
||
|
public FloatParameter
|
||
|
{
|
||
|
public:
|
||
|
IntFloatParameter(String name, int min, int max);
|
||
|
~IntFloatParameter(void);
|
||
|
String getParameterText(void);
|
||
|
int getParameterValue(void);
|
||
|
private:
|
||
|
int min;
|
||
|
int max;
|
||
|
};
|
||
|
|