| 27 | using namespace SimpleMail; |
| 28 | |
| 29 | Server::Server(QObject *parent) |
| 30 | : QObject(parent) |
| 31 | , d_ptr(new ServerPrivate(this)) |
| 32 | { |
| 33 | Q_D(Server); |
| 34 | d->hostname = QHostInfo::localHostName(); |
| 35 | } |
| 36 | |
| 37 | Server::~Server() |
| 38 | { |
nothing calls this directly
no outgoing calls
no test coverage detected