OptionBase::OptionBase(const std::string& longId) { hasShortId_ = false; shortId_ = ' '; hasLongId_ = false; longId_ = longId; check_(); }
void TOPPASVertex::TOPPASFilenames::append(const QStringList& filenames) { foreach(const QString& fn, filenames) { check_(fn); push_back(fn); }
OptionBase::OptionBase(const char& shortId) { hasShortId_ = false; shortId_ = shortId; hasLongId_ = false; check_(); }
OptionBase::OptionBase() { hasShortId_ = false; shortId_ = ' '; hasLongId_ = false; check_(); }
void TOPPASVertex::TOPPASFilenames::push_back(const QString& filename) { check_(filename); filenames_.push_back(filename); }
void TOPPASVertex::TOPPASFilenames::set(const QString& filename, int i) { check_(filename); filenames_[i] = filename; }