1 | // Copyright (C) 2016 The Qt Company Ltd. |
---|---|
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
3 | |
4 | #include <QCoreApplication> |
5 | |
6 | #include "qnearfieldmanager_generic_p.h" |
7 | |
8 | QT_BEGIN_NAMESPACE |
9 | |
10 | /* |
11 | Constructs a new near field manager private implementation. |
12 | */ |
13 | QNearFieldManagerPrivateImpl::QNearFieldManagerPrivateImpl() |
14 | { |
15 | } |
16 | |
17 | /* |
18 | Destroys the near field manager private implementation. |
19 | */ |
20 | QNearFieldManagerPrivateImpl::~QNearFieldManagerPrivateImpl() |
21 | { |
22 | } |
23 | |
24 | QT_END_NAMESPACE |
25 |