Line | Source Code | Coverage |
---|
1 | | - |
2 | | - |
3 | QTcpSocket::QTcpSocket(QObject *parent) | - |
4 | : QAbstractSocket(TcpSocket, *new QTcpSocketPrivate, parent) | - |
5 | { | - |
6 | | - |
7 | | - |
8 | | - |
9 | d_func()->isBuffered = true; | - |
10 | } executed: } Execution Count:2723 | 2723 |
11 | | - |
12 | | - |
13 | | - |
14 | | - |
15 | | - |
16 | | - |
17 | | - |
18 | QTcpSocket::~QTcpSocket() | - |
19 | { | - |
20 | | - |
21 | | - |
22 | | - |
23 | } | - |
24 | | - |
25 | | - |
26 | | - |
27 | | - |
28 | QTcpSocket::QTcpSocket(QTcpSocketPrivate &dd, QObject *parent) | - |
29 | : QAbstractSocket(TcpSocket, dd, parent) | - |
30 | { | - |
31 | d_func()->isBuffered = true; | - |
32 | } executed: } Execution Count:100 | 100 |
33 | | - |
34 | | - |
35 | | - |
| | |