本文整理汇总了C++中Q3CString::append方法的典型用法代码示例。如果您正苦于以下问题:C++ Q3CString::append方法的具体用法?C++ Q3CString::append怎么用?C++ Q3CString::append使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Q3CString
的用法示例。
在下文中一共展示了Q3CString::append方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: reverse_main
void UmlPackage::reverse_main(const Q3CString & type, Q3CString comment) {
// do not lost main !
Lex::mark();
UmlOperation::skip_body();
UmlArtifact * cp;
#ifdef ROUNDTRIP
bool roundtrip = FALSE;
if ((cp = UmlArtifact::get_main()) != 0) {
roundtrip = TRUE;
cp->set_usefull();
}
else
#endif
if ((cp = UmlBaseArtifact::create(get_deploymentview(0), "main")) == 0) {
UmlCom::trace("<font face=helvetica><b>cannot create <i>artifact main</i></b></font><br><hr>");
return;
}
if (! comment.isEmpty()) {
unsigned start = 0;
do {
comment.insert(start, "//");
start = comment.find('\n', start + 2) + 1;
} while (start != 0);
comment.append("\n\n");
}
comment.append(type);
comment.append(" main(");
comment.append(Lex::region());
comment.append("\n");
#ifdef ROUNDTRIP
if (roundtrip) {
if (cp->cppSource() != comment)
cp->set_CppSource(comment);
return;
}
#endif
cp->set_Stereotype("source");
cp->set_CppSource(comment);
cp->set_CppHeader(0);
}
示例2: QCOMPARE
void tst_Q3CString::append()
{
Q3CString a;
a = "<>ABCABCABCABC";
QCOMPARE(a.append(">"),(Q3CString)"<>ABCABCABCABC>");
}