#include <params.h>
Definition at line 287 of file params.h.
◆ DoubleParam()
tesseract::DoubleParam::DoubleParam |
( |
double |
value, |
|
|
const char * |
name, |
|
|
const char * |
comment, |
|
|
bool |
init, |
|
|
ParamsVectors * |
vec |
|
) |
| |
|
inline |
Definition at line 289 of file params.h.
290 :
Param(name, comment, init) {
293 params_vec_ = &(vec->double_params);
294 vec->double_params.push_back(this);
295 }
Param(const char *name, const char *comment, bool init)
◆ ~DoubleParam()
tesseract::DoubleParam::~DoubleParam |
( |
| ) |
|
|
inline |
Definition at line 296 of file params.h.
296 {
297 ParamUtils::RemoveParam<DoubleParam>(this, params_vec_);
298 }
◆ operator double()
tesseract::DoubleParam::operator double |
( |
| ) |
const |
|
inline |
Definition at line 299 of file params.h.
299 {
300 return value_;
301 }
◆ operator=()
void tesseract::DoubleParam::operator= |
( |
double |
value | ) |
|
|
inline |
◆ ResetFrom()
void tesseract::DoubleParam::ResetFrom |
( |
const ParamsVectors * |
vec | ) |
|
|
inline |
Definition at line 311 of file params.h.
311 {
312 for (auto *param : vec->double_params) {
313 if (strcmp(param->name_str(),
name_) == 0) {
314
315
316 value_ = *param;
317 break;
318 }
319 }
320 }
◆ ResetToDefault()
void tesseract::DoubleParam::ResetToDefault |
( |
| ) |
|
|
inline |
Definition at line 308 of file params.h.
308 {
309 value_ = default_;
310 }
◆ set_value()
void tesseract::DoubleParam::set_value |
( |
double |
value | ) |
|
|
inline |
The documentation for this class was generated from the following file:
- /media/home/debian/src/github/tesseract-ocr/tesseract/src/ccutil/params.h