You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sems/apps/voicebox/PromptOptions.h

18 lines
326 B

#ifndef _PROMPT_OPTIONS_H
#define _PROMPT_OPTIONS_H
struct PromptOptions {
bool has_digits;
bool digits_right;
PromptOptions(bool has_digits,
bool digits_right)
: has_digits(has_digits),
digits_right(digits_right) { }
PromptOptions()
: has_digits(false),
digits_right(false) { }
};
#endif