ProteoWizard
Public Member Functions | Private Attributes
WriteCVParam Class Reference

List of all members.

Public Member Functions

 WriteCVParam (ostream &os)
void operator() (const CVParam &param)

Private Attributes

ostream & os_

Detailed Description

Definition at line 38 of file ParamTypesTest.cpp.


Constructor & Destructor Documentation

WriteCVParam::WriteCVParam ( ostream &  os)
inline

Definition at line 42 of file ParamTypesTest.cpp.

: os_(os) {}

Member Function Documentation

void WriteCVParam::operator() ( const CVParam param)
inline

Definition at line 44 of file ParamTypesTest.cpp.

References pwiz::data::CVParam::cvid, CVID_Unknown, pwiz::cv::cvTermInfo(), pwiz::cv::CVTermInfo::id, pwiz::cv::CVTermInfo::name, os_, pwiz::data::CVParam::units, and pwiz::data::CVParam::value.

{
os_ << "<cvParam "
<< "cvLabel=\"" << cvTermInfo(param.cvid).id.substr(0,2) << "\" "
<< "accession=\"" << cvTermInfo(param.cvid).id << "\" "
<< "name=\"" << cvTermInfo(param.cvid).name << "\" "
<< "value=\"" << param.value << "\"";
if (param.units != CVID_Unknown)
{
os_ << " unitAccession=\"" << cvTermInfo(param.units).id << "\" "
<< "unitName=\"" << cvTermInfo(param.units).name << "\"";
}
os_ << "/>\n";
}

Member Data Documentation

ostream& WriteCVParam::os_
private

Definition at line 62 of file ParamTypesTest.cpp.


The documentation for this class was generated from the following file: