ProteoWizard
|
Implementation of ContactType from mzIdentML. More...
#include <IdentData.hpp>
Public Member Functions | |
Contact (const std::string &id_="", const std::string &name_="") | |
virtual | ~Contact () |
virtual bool | empty () const |
returns true iff the element contains no params or param groups | |
![]() | |
IdentifiableParamContainer (const std::string &id_="", const std::string &name_="") | |
virtual | ~IdentifiableParamContainer () |
![]() | |
CVParam | cvParam (CVID cvid) const |
finds cvid in the container: | |
CVParam | cvParamChild (CVID cvid) const |
finds child of cvid in the container: | |
std::vector< CVParam > | cvParamChildren (CVID cvid) const |
finds all children of cvid in the container: | |
bool | hasCVParam (CVID cvid) const |
returns true iff cvParams contains exact cvid (recursive) | |
bool | hasCVParamChild (CVID cvid) const |
returns true iff cvParams contains a child (is_a) of cvid (recursive) | |
UserParam | userParam (const std::string &) const |
finds UserParam with specified name | |
void | set (CVID cvid, const std::string &value="", CVID units=CVID_Unknown) |
set/add a CVParam (not recursive) | |
void | set (CVID cvid, double value, CVID units=CVID_Unknown) |
set/add a CVParam (not recursive) | |
void | set (CVID cvid, int value, CVID units=CVID_Unknown) |
set/add a CVParam (not recursive) | |
template<typename value_type > | |
void | set (CVID cvid, value_type value, CVID units=CVID_Unknown) |
set/add a CVParam (not recursive) | |
void | clear () |
clears the collections | |
bool | operator== (const ParamContainer &that) const |
returns true iff this and that have the exact same cvParams and userParams | |
bool | operator!= (const ParamContainer &that) const |
returns !(this==that) | |
template<> | |
void | set (CVID cvid, bool value, CVID units) |
special case for bool (outside the class for gcc 3.4, and inline for msvc) |
Additional Inherited Members | |
![]() | |
std::string | id |
std::string | name |
![]() | |
std::vector< ParamGroupPtr > | paramGroupPtrs |
a collection of references to ParamGroups | |
std::vector< CVParam > | cvParams |
a collection of controlled vocabulary terms | |
std::vector< UserParam > | userParams |
a collection of uncontrolled user terms |
Implementation of ContactType from mzIdentML.
A contact is either a person or an organization.
Definition at line 117 of file IdentData.hpp.
pwiz::identdata::Contact::Contact | ( | const std::string & | id_ = "" , |
const std::string & | name_ = "" |
||
) |
|
inlinevirtual |
Definition at line 121 of file IdentData.hpp.
|
virtual |
returns true iff the element contains no params or param groups
Reimplemented from pwiz::identdata::IdentifiableParamContainer.
Reimplemented in pwiz::identdata::Person, and pwiz::identdata::Organization.