~mwinter4/maus/ckov-update

« back to all changes in this revision

Viewing changes to src/common_cpp/Converter/DataConverters/CppJsonRunHeaderConverter.cc

  • Committer: Chris Rogers
  • Date: 2012-11-23 11:19:42 UTC
  • mfrom: (659.1.50 release-candidate)
  • Revision ID: chris.rogers@stfc.ac.uk-20121123111942-5wi23zn7zx396q2d
Tags: MAUS-v0.4.1
MAUS-v0.4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
Json::Value* CppJsonRunHeaderConverter::_convert(const RunHeaderData* data) const {
26
26
  if (data == NULL || data->GetRunHeader() == NULL)
27
27
      return new Json::Value();
28
 
  Json::Value* my_json = RunHeaderProcessor().CppToJson(*data->GetRunHeader());
 
28
  Json::Value* my_json = RunHeaderProcessor().CppToJson(*data->GetRunHeader(), "");
29
29
  return my_json;
30
30
}
31
31
}