Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
leadvertisement1adaptor.cpp
Go to the documentation of this file.
1/*
2 * This file was generated by qdbusxml2cpp version 0.8
3 * Source file was org.bluez.LEAdvertisement1.xml
4 *
5 * qdbusxml2cpp is Copyright (C) The Qt Company Ltd. and other contributors.
6 *
7 * This is an auto-generated file.
8 * Do not edit! All changes made to it will be lost.
9 */
10
12#include <QtCore/QMetaObject>
13#include <QtCore/QByteArray>
14#include <QtCore/QList>
15#include <QtCore/QMap>
16#include <QtCore/QString>
17#include <QtCore/QStringList>
18#include <QtCore/QVariant>
19
20namespace QtBluetoothPrivate {
21
22/*
23 * Implementation of adaptor class OrgBluezLEAdvertisement1Adaptor
24 */
25
26OrgBluezLEAdvertisement1Adaptor::OrgBluezLEAdvertisement1Adaptor(QObject *parent)
27 : QDBusAbstractAdaptor(parent)
28{
29 // constructor
30 setAutoRelaySignals(true);
31}
32
33OrgBluezLEAdvertisement1Adaptor::~OrgBluezLEAdvertisement1Adaptor()
34{
35 // destructor
36}
37
38bool OrgBluezLEAdvertisement1Adaptor::discoverable() const
39{
40 // get the value of property Discoverable
41 return qvariant_cast< bool >(parent()->property("Discoverable"));
42}
43
44void OrgBluezLEAdvertisement1Adaptor::setDiscoverable(bool value)
45{
46 // set the value of property Discoverable
47 parent()->setProperty("Discoverable", QVariant::fromValue(value));
48}
49
50QStringList OrgBluezLEAdvertisement1Adaptor::includes() const
51{
52 // get the value of property Includes
53 return qvariant_cast< QStringList >(parent()->property("Includes"));
54}
55
56void OrgBluezLEAdvertisement1Adaptor::setIncludes(const QStringList &value)
57{
58 // set the value of property Includes
59 parent()->setProperty("Includes", QVariant::fromValue(value));
60}
61
62QString OrgBluezLEAdvertisement1Adaptor::localName() const
63{
64 // get the value of property LocalName
65 return qvariant_cast< QString >(parent()->property("LocalName"));
66}
67
68void OrgBluezLEAdvertisement1Adaptor::setLocalName(const QString &value)
69{
70 // set the value of property LocalName
71 parent()->setProperty("LocalName", QVariant::fromValue(value));
72}
73
74ManufacturerDataList OrgBluezLEAdvertisement1Adaptor::manufacturerData() const
75{
76 // get the value of property ManufacturerData
77 return qvariant_cast< ManufacturerDataList >(parent()->property("ManufacturerData"));
78}
79
80void OrgBluezLEAdvertisement1Adaptor::setManufacturerData(ManufacturerDataList value)
81{
82 // set the value of property ManufacturerData
83 parent()->setProperty("ManufacturerData", QVariant::fromValue(value));
84}
85
86uint OrgBluezLEAdvertisement1Adaptor::maxInterval() const
87{
88 // get the value of property MaxInterval
89 return qvariant_cast< uint >(parent()->property("MaxInterval"));
90}
91
92void OrgBluezLEAdvertisement1Adaptor::setMaxInterval(uint value)
93{
94 // set the value of property MaxInterval
95 parent()->setProperty("MaxInterval", QVariant::fromValue(value));
96}
97
98uint OrgBluezLEAdvertisement1Adaptor::minInterval() const
99{
100 // get the value of property MinInterval
101 return qvariant_cast< uint >(parent()->property("MinInterval"));
102}
103
104void OrgBluezLEAdvertisement1Adaptor::setMinInterval(uint value)
105{
106 // set the value of property MinInterval
107 parent()->setProperty("MinInterval", QVariant::fromValue(value));
108}
109
110QStringList OrgBluezLEAdvertisement1Adaptor::serviceUUIDs() const
111{
112 // get the value of property ServiceUUIDs
113 return qvariant_cast< QStringList >(parent()->property("ServiceUUIDs"));
114}
115
116void OrgBluezLEAdvertisement1Adaptor::setServiceUUIDs(const QStringList &value)
117{
118 // set the value of property ServiceUUIDs
119 parent()->setProperty("ServiceUUIDs", QVariant::fromValue(value));
120}
121
122QString OrgBluezLEAdvertisement1Adaptor::type() const
123{
124 // get the value of property Type
125 return qvariant_cast< QString >(parent()->property("Type"));
126}
127
128void OrgBluezLEAdvertisement1Adaptor::setType(const QString &value)
129{
130 // set the value of property Type
131 parent()->setProperty("Type", QVariant::fromValue(value));
132}
133
134void OrgBluezLEAdvertisement1Adaptor::Release()
135{
136 // handle method call org.bluez.LEAdvertisement1.Release
137 QMetaObject::invokeMethod(parent(), "Release");
138}
139
140} // end of namespace QtBluetoothPrivate