File indexing completed on 2024-05-05 05:41:36

0001 #include <QtCore/QObject>
0002 
0003 class Foo: public QObject
0004 {
0005     Q_OBJECT
0006 public:
0007     Foo()
0008     {
0009         connect(this, &Foo::bar, []{});
0010     }
0011 Q_SIGNALS:
0012     void bar();
0013 };