当前位置: 首页>>代码示例>>C++>>正文


C++ Option::setDescription方法代码示例

本文整理汇总了C++中Option::setDescription方法的典型用法代码示例。如果您正苦于以下问题:C++ Option::setDescription方法的具体用法?C++ Option::setDescription怎么用?C++ Option::setDescription使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Option的用法示例。


在下文中一共展示了Option::setDescription方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: getSecure

void
OptionsCont::addDescription(const std::string& name,
                            const std::string& subtopic,
                            const std::string& description) {
    Option* o = getSecure(name);
    assert(o != 0);
    assert(find(mySubTopics.begin(), mySubTopics.end(), subtopic) != mySubTopics.end());
    o->setDescription(description);
    mySubTopicEntries[subtopic].push_back(name);
}
开发者ID:kbleeck,项目名称:customSumo26,代码行数:10,代码来源:OptionsCont.cpp

示例2: get

//! Searches the OptionDatabase for \var optionName and, if found, returns the
//! Option record in \var option.  Returns true if found.
bool OptionDatabase::get(QString const& optionName, Option& option)
{
    bool found(false);
    bool okay(false);

    QString buf("select * from options where Name = '");
    buf += optionName;
    buf += "';";

    QSqlQuery query( QSqlDatabase::database("QChem") );
    query.setForwardOnly(true);

    if (query.prepare(buf) && query.exec()) {
        okay = true;
    } else {
        QString msg("Database transaction failed:\n");
        msg += buf + "\n";
        msg += query.lastError().databaseText();
        qDebug() << msg;
    }


    if (okay) {
        if (query.next()) {
            found = true;

            option.setName(query.value(0).toString());
            option.setType(query.value(1).toInt());
            option.setDefault(query.value(2).toInt());
            option.setOptions(query.value(3).toString());
            option.setDescription(query.value(4).toString());
            option.setImplementation(query.value(5).toInt());

            if (query.next()) {
                QString msg("More than one record for ");
                msg += optionName;
                msg += " found in database.";
                QMsgBox::information(0, "EGAD!", msg);
            }

        }
        while (query.next()) {}
    }

    return found;
}
开发者ID:jwakely,项目名称:IQmol,代码行数:48,代码来源:OptionDatabase.C


注:本文中的Option::setDescription方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。