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