File indexing completed on 2024-04-28 15:17:55

0001 /*
0002  * BluezQt - Asynchronous Bluez wrapper library
0003  *
0004  * SPDX-FileCopyrightText: 2014 David Rosca <nowrep@gmail.com>
0005  *
0006  * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0007  */
0008 
0009 #include "obexagent.h"
0010 #include "debug.h"
0011 
0012 namespace BluezQt
0013 {
0014 ObexAgent::ObexAgent(QObject *parent)
0015     : QObject(parent)
0016 {
0017 }
0018 
0019 void ObexAgent::authorizePush(ObexTransferPtr transfer, ObexSessionPtr session, const Request<QString> &request)
0020 {
0021     Q_UNUSED(transfer)
0022     Q_UNUSED(session)
0023     Q_UNUSED(request)
0024 }
0025 
0026 void ObexAgent::cancel()
0027 {
0028 }
0029 
0030 void ObexAgent::release()
0031 {
0032 }
0033 
0034 } // namespace BluezQt
0035 
0036 #include "moc_obexagent.cpp"