MetriVis | Overview | Download | User Manual | Development |
Reference | Overview | Design Documentation | Reference Backend | Reference Frontend |
#include <XYPlotFetcher.h>
Public Member Functions | |
XYPlotFetcher () | |
Default constructor. | |
virtual | ~XYPlotFetcher () |
Deconstructor. | |
virtual void | Execute () |
Executes the XYPlotFetcher. Produces ouput data from input. | |
virtual void | Reset () |
Resets the pipeline process to it's original state. | |
const std::string & | metric_name () const |
Interface function to member variable metric_name. | |
void | set_metric_name (const std::string &metric_name) |
Interface function to member variable metric_name. | |
Private Attributes | |
std::string | metric_name_ |
The name of the metric to retrieve. |
metrivis::XYPlotFetcher::XYPlotFetcher | ( | ) |
Default constructor.
Constructor.
void metrivis::XYPlotFetcher::Execute | ( | ) | [virtual] |
Executes the XYPlotFetcher. Produces ouput data from input.
Executes this process and evaluates this input data and creates output from it. Abstract function needs to be overloaded.
See header file for more information.
Implements metrivis::PipelineProcess.
void metrivis::XYPlotFetcher::Reset | ( | ) | [virtual] |
Resets the pipeline process to it's original state.
Frees resources. May take some time to execute, don't put it into speed critical sections. This is normally done after the execution of a pipeline. It automatically gets called from Pipeline::Reset.
See header file for more information.
Reimplemented from metrivis::PipelineProcess.
const std::string& metrivis::XYPlotFetcher::metric_name | ( | ) | const [inline] |
Interface function to member variable metric_name.
void metrivis::XYPlotFetcher::set_metric_name | ( | const std::string & | metric_name | ) | [inline] |
Interface function to member variable metric_name.
metric_name,: | The name of the metric to retrieve. |