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