|
ReCodEx - Task Broker
ReCodEx is complex programmer testing solution, primary targeted to technical universities. It's highly customizable and based on modern technologies.
|
Inheritance diagram for count_matcher:Public Member Functions | |
| count_matcher (std::string my_value) | |
| virtual | ~count_matcher () |
| virtual bool | match (const std::string &value) |
Public Member Functions inherited from header_matcher | |
| header_matcher (std::string my_value) | |
| virtual | ~header_matcher () |
Additional Inherited Members | |
Protected Attributes inherited from header_matcher | |
| std::string | my_value_ |
Checks if a given value is less than or equal to a preset number.
Definition at line 57 of file worker.cpp.
|
inline |
Constructor.
| my_value | Base value for comparison. Will be converted to size_t type using std::stoul. |
Definition at line 68 of file worker.cpp.
|
inlinevirtual |
Destructor.
Definition at line 73 of file worker.cpp.
|
inlinevirtual |
Check if given value is >= to inner preset value.
| value | Value to be checked. Before comparison, the value is converted to size_t type using std::stoul. |
Reimplemented from header_matcher.
Definition at line 82 of file worker.cpp.