24class IntegerRange final : 
public Range {
 
   26    IntegerRange(l10n::String newName, l10n::String 
title, int32_t newMin, int32_t newMax)
 
   27        : 
Range(newName, 
title), minValue(newMin), maxValue(newMax) {}
 
   28    void beginSession(MenuItem* navigatedBackwardFrom) 
override;
 
   29    void getText(
char* buffer, int32_t* getLeftLength, int32_t* getRightLength, 
bool mayShowJustOne) 
override;
 
   31    int32_t getRandomValueInRange();
 
   35    int32_t minValue, maxValue;