MCPcopy Create free account
hub / github.com/KDAB/codebrowser / C

Class C

tests/testqt.cc:129–139  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

127namespace TestNS {
128
129class C : public QObject {
130 Q_OBJECT
131signals:
132 void sig1(C *foo);
133 void sig2(TestNS::C *foo);
134public slots:
135 void MySlot() {
136 connect(this, SIGNAL(sig1(C*)), this, SLOT(deleteLater()));
137 connect(this, SIGNAL(sig2(TestNS::C*)), this, SLOT(deleteLater()));
138 }
139};
140
141}
142

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected