#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 MyObject::addThree(QList 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 flags) { return flags; } int MyObject::localEnumTest(QFlags flags) { return flags; } int MyObject::functionParam(std::function 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& 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& 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::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 const& nums) { return nums.size(); } int SomeNS::customMethod(QList const& nums) { return 0; } int anotherCustomMethod(QList const& nums) { return 0; } void TypedefUser::setTagPattern(const QString &tagName, SomeNS::TagFormatter formatter, int leadingNewlines) { } Shared::Shared(const Shared& other) { }