1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
|
#include "cpplib.h"
#include "external_lib.h"
MyObject::MyObject(QObject* parent)
: QObject(parent)
{
}
double MyObject::unnamedParameters(int i, double d)
{
return i * d;
}
int MyObject::addThree(int input) const
{
return input + 3;
}
QList<int> MyObject::addThree(QList<int> input) const
{
auto output = input;
std::transform(output.begin(), output.end(),
output.begin(),
[](int in) { return in + 3; });
return output;
}
const QString MyObject::addThree(const QString& input, const QString& prefix) const
{
return prefix + input + QStringLiteral("Three");
}
int MyObject::findNeedle(QStringList list, QString needle, Qt::MatchFlags flags) const
{
if (flags & Qt::MatchStartsWith) {
auto it = std::find_if(list.begin(), list.end(), [needle](QString cand) {
return cand.startsWith(needle);
});
if (it != list.end()) {
return std::distance(list.begin(), it);
}
return -1;
}
return list.indexOf(needle);
}
int MyObject::qtEnumTest(QFlags<Qt::MatchFlag> flags)
{
return flags;
}
int MyObject::localEnumTest(QFlags<LocalEnum> flags)
{
return flags;
}
int MyObject::functionParam(std::function<int()> fn)
{
return fn();
}
int MyObject::groups(unsigned int maxCount) const
{
return maxCount;
}
int MyObject::externalFwdDecl(const ExternalFwdDecl& f)
{
return f.getValue();
}
int MyObject::externalFwdDeclRef(ExternalFwdDecl& f)
{
return f.getValue();
}
int MyObject::localDeclListDecl(const QList<LocalFwdDecl>& l)
{
return std::accumulate(l.begin(), l.end(), 0, [](int current, LocalFwdDecl const& next){
return current + next.getValue();
});
}
int MyObject::const_parameters(const int input, QObject* const obj) const
{
if (obj) return input / 3;
return input / 2;
}
int MyObject::localFwdDecl(const LocalFwdDecl& f)
{
return f.getValue();
}
int MyObject::localListDecl(const QList<int>& l)
{
return std::accumulate(l.begin(), l.end(), 0);
}
void MyObject::enumNullptr(Qt::WindowFlags f)
{
}
void MyObject::enumBraces(Qt::WindowFlags f)
{
}
void MyObject::stringBraces(QString s)
{
}
void MyObject::stringRefBraces(QString const& s)
{
}
void MyObject::intBraces(int i)
{
}
void MyObject::intRefBraces(int const& s)
{
}
void MyObject::pointerBraces(int* p)
{
}
LocalFwdDecl::LocalFwdDecl(int value)
: m_value(value)
{
}
int LocalFwdDecl::getValue() const
{
return m_value;
}
NonCopyable::NonCopyable()
: mNum(new int(42))
{
}
NonCopyable::~NonCopyable()
{
delete mNum;
}
NonCopyableByMacro::NonCopyableByMacro()
{
}
namespace SomeNS {
NonCopyableInNS::NonCopyableInNS()
: mNum(new int(42))
{
}
NonCopyableInNS::~NonCopyableInNS()
{
delete mNum;
}
}
void MyObject::publicSlot1()
{
Q_EMIT publicSlotCalled();
}
void MyObject::publicSlot2()
{
Q_EMIT publicSlotCalled();
}
void MyObject::protectedSlot1()
{
Q_EMIT protectedSlotCalled();
}
void MyObject::protectedSlot2()
{
Q_EMIT protectedSlotCalled();
}
void MyObject::privateSlot1()
{
Q_EMIT privateSlotCalled();
}
void MyObject::privateSlot2()
{
Q_EMIT privateSlotCalled();
}
qreal SomeNS::useEnum(MyFlags flags)
{
return flags;
}
int customMethod(QList<int> const& nums)
{
return nums.size();
}
int SomeNS::customMethod(QList<int> const& nums)
{
return 0;
}
int anotherCustomMethod(QList<int> const& nums)
{
return 0;
}
void TypedefUser::setTagPattern(const QString &tagName,
SomeNS::TagFormatter formatter,
int leadingNewlines)
{
}
Shared::Shared(const Shared& other)
{
}
|