Flow123d
release_3.0.0-875-gdc24e59
|
#include <output_time_set.hh>
Public Member Functions | |
void | read_from_input (Input::Array in_array, const TimeGovernor &tg) |
void | read_from_input (Input::Array in_array, const TimeGovernor &tg, TimeMark::Type mark_type) |
bool | contains (TimeMark mark) const |
void | add (double begin, TimeMark::Type mark_type) |
void | add (double begin, double step, double end, TimeMark::Type mark_type) |
Static Public Member Functions | |
static const Input::Type::Array | get_input_type () |
Private Attributes | |
std::set< double > | times_ |
Set of times. Simple extension of std::set<double> providing initialization by an array of time grids. TODO: replace by std::set with non-member read and initialize functions.
Finally we store just doubles, since it is like a set of the time marks with same type. So we need not to save the type.
Definition at line 28 of file output_time_set.hh.
void OutputTimeSet::add | ( | double | begin, |
TimeMark::Type | mark_type | ||
) |
void OutputTimeSet::add | ( | double | begin, |
double | step, | ||
double | end, | ||
TimeMark::Type | mark_type | ||
) |
Definition at line 89 of file output_time_set.cc.
bool OutputTimeSet::contains | ( | TimeMark | mark | ) | const |
Definition at line 74 of file output_time_set.cc.
|
static |
void OutputTimeSet::read_from_input | ( | Input::Array | in_array, |
const TimeGovernor & | tg | ||
) |
void OutputTimeSet::read_from_input | ( | Input::Array | in_array, |
const TimeGovernor & | tg, | ||
TimeMark::Type | mark_type | ||
) |
Definition at line 42 of file output_time_set.cc.
|
private |
Definition at line 51 of file output_time_set.hh.