1 | /* |
2 | * BluezQt - Asynchronous Bluez wrapper library |
3 | * |
4 | * SPDX-FileCopyrightText: 2014 David Rosca <nowrep@gmail.com> |
5 | * |
6 | * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL |
7 | */ |
8 | |
9 | #include "obexagent.h" |
10 | #include "debug.h" |
11 | |
12 | namespace BluezQt |
13 | { |
14 | ObexAgent::ObexAgent(QObject *parent) |
15 | : QObject(parent) |
16 | { |
17 | } |
18 | |
19 | void ObexAgent::(ObexTransferPtr transfer, ObexSessionPtr session, const Request<QString> &request) |
20 | { |
21 | Q_UNUSED(transfer) |
22 | Q_UNUSED(session) |
23 | Q_UNUSED(request) |
24 | } |
25 | |
26 | void ObexAgent::cancel() |
27 | { |
28 | } |
29 | |
30 | void ObexAgent::release() |
31 | { |
32 | } |
33 | |
34 | } // namespace BluezQt |
35 | |
36 | #include "moc_obexagent.cpp" |
37 | |