Tesseract  3.02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
tesseract::Param Class Reference

#include <params.h>

Inheritance diagram for tesseract::Param:
tesseract::BoolParam tesseract::DoubleParam tesseract::IntParam tesseract::StringParam

Public Member Functions

 ~Param ()
 
const char * name_str () const
 
const char * info_str () const
 
bool is_init () const
 
bool is_debug () const
 
bool constraint_ok (SetParamConstraint constraint) const
 

Protected Member Functions

 Param (const char *name, const char *comment, bool init)
 

Protected Attributes

const char * name_
 
const char * info_
 
bool init_
 
bool debug_
 

Detailed Description

Definition at line 110 of file params.h.

Constructor & Destructor Documentation

tesseract::Param::~Param ( )
inline

Definition at line 112 of file params.h.

112 {}
tesseract::Param::Param ( const char *  name,
const char *  comment,
bool  init 
)
inlineprotected

Definition at line 129 of file params.h.

129  :
130  name_(name), info_(comment), init_(init) {
131  debug_ = (strstr(name, "debug") != NULL) || (strstr(name, "display"));
132  }
const char * name_
Definition: params.h:134
#define NULL
Definition: host.h:144
const char * info_
Definition: params.h:135

Member Function Documentation

bool tesseract::Param::constraint_ok ( SetParamConstraint  constraint) const
inline

Definition at line 118 of file params.h.

118  {
119  return (constraint == SET_PARAM_CONSTRAINT_NONE ||
120  (constraint == SET_PARAM_CONSTRAINT_DEBUG_ONLY &&
121  this->is_debug()) ||
122  (constraint == SET_PARAM_CONSTRAINT_NON_DEBUG_ONLY &&
123  !this->is_debug()) ||
124  (constraint == SET_PARAM_CONSTRAINT_NON_INIT_ONLY &&
125  !this->is_init()));
126  }
bool is_init() const
Definition: params.h:116
bool is_debug() const
Definition: params.h:117
const char* tesseract::Param::info_str ( ) const
inline

Definition at line 115 of file params.h.

115 { return info_; }
const char * info_
Definition: params.h:135
bool tesseract::Param::is_debug ( ) const
inline

Definition at line 117 of file params.h.

117 { return debug_; }
bool tesseract::Param::is_init ( ) const
inline

Definition at line 116 of file params.h.

116 { return init_; }
const char* tesseract::Param::name_str ( ) const
inline

Definition at line 114 of file params.h.

114 { return name_; }
const char * name_
Definition: params.h:134

Member Data Documentation

bool tesseract::Param::debug_
protected

Definition at line 137 of file params.h.

const char* tesseract::Param::info_
protected

Definition at line 135 of file params.h.

bool tesseract::Param::init_
protected

Definition at line 136 of file params.h.

const char* tesseract::Param::name_
protected

Definition at line 134 of file params.h.


The documentation for this class was generated from the following file: