Skip to content
Snippets Groups Projects
Metric4thPartyWrapper.cxx 297 B
#include "Metric4thPartyWrapper.h"

namespace elx
{
void Metric4thPartyWrapper::SetMetricValueComponent(MetricValueInterface* metricValueComponent)
{
  this->metricval = metricValueComponent;
}

int Metric4thPartyWrapper::GetCost()
{
  return this->metricval->GetValue();
}

} // end namespace elx