本文整理汇总了C++中Error::GetText方法的典型用法代码示例。如果您正苦于以下问题:C++ Error::GetText方法的具体用法?C++ Error::GetText怎么用?C++ Error::GetText使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Error
的用法示例。
在下文中一共展示了Error::GetText方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: Lexema
TEST(Corrector, can_pass_correct_word) {
Lexema *word = new Lexema[6];
word[0] = Lexema(Type_Lexems::open_bracet, "(", 0);
word[1] = Lexema(Type_Lexems::digit, "1", 1);
word[2] = Lexema(Type_Lexems::add, "+", 2);
word[3] = Lexema(Type_Lexems::digit, "2", 3);
word[4] = Lexema(Type_Lexems::close_bracket, ")", 4);
word[5] = Lexema(Type_Lexems::terminal, "", 5);
Corrector c;
Stack<Error>* errors;
Error res;
errors = c.CheckExpression(word);
if (errors->IsEmpty())
{
res = Error(-2, "Ура, ошибок нет!");
}
else
{
res = errors->Put();
}
EXPECT_EQ(-2, res.GetPosition());
EXPECT_EQ("Ура, ошибок нет!", res.GetText());
}
示例2: QString
}
else
{
return QString();
}
}
private:
typedef std::map<String, QRadioButton*> IdToButton;
void SetupButton(IdToButton::value_type but)
{
connect(but.second, SIGNAL(toggled(bool)), SIGNAL(SettingsChanged()));
if (const Error status = Backends.GetStatus(but.first))
{
but.second->setEnabled(false);
but.second->setToolTip(ToQString(status.GetText()));
}
else
{
but.second->setEnabled(true);
}
Parameters::ExclusiveValue::Bind(*but.second, *Options, Parameters::ZXTuneQT::UI::Export::TYPE, but.first);
}
private:
const Parameters::Container::Ptr Options;
const FileBackendsSet Backends;
IdToButton Buttons;
};
}
namespace UI