Line | Branch | Exec | Source |
---|---|---|---|
1 | #include "Fcb1010Edit.h" | ||
2 | #include "./ui_Fcb1010Edit.h" | ||
3 | |||
4 | #include <iostream> | ||
5 | |||
6 | 1 | Fcb1010Edit::Fcb1010Edit(QWidget *parent) | |
7 | : QMainWindow(parent) | ||
8 |
2/4✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✓ Branch 5 taken 1 times.
✗ Branch 6 not taken.
|
1 | , m_pUi(new Ui::Fcb1010Edit) |
9 | { | ||
10 |
1/2✓ Branch 1 taken 1 times.
✗ Branch 2 not taken.
|
1 | m_pUi->setupUi(this); |
11 | 1 | } | |
12 | |||
13 | 4 | Fcb1010Edit::~Fcb1010Edit() noexcept | |
14 | { | ||
15 |
1/2✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
|
2 | delete m_pUi; |
16 | 4 | } | |
17 |