MCPcopy Create free account
hub / github.com/boostorg/build / Window

Method Window

example/qt/qt3/hello/main.cpp:14–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12{
13public:
14 Window()
15 {
16 setCaption("QCanvas test");
17 QVBox* vb = new QVBox(this);
18 setCentralWidget(vb);
19
20 Canvas* c = new Canvas(vb);
21 QPushButton* b = new QPushButton("Change color", vb);
22 connect(b, SIGNAL(clicked()), c, SLOT(change_color()));
23 }
24};
25
26int main(int argc, char **argv)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected