tdebluez
deviceImpl.h
Go to the documentation of this file.
1 /*
2  *
3  * Device Implementation of bluez5 for libtdebluez
4  *
5  * Copyright (C) 2018 Emanoil Kotsev <deloptes@gmail.com>
6  *
7  *
8  * This file is part of libtdebluez.
9  *
10  * libtdebluez is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * libtdebluez is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with kbluetooth; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23  *
24  */
25 
26 #if !defined(DEVICEIMPL_H_INCLUDED)
27 #define DEVICEIMPL_H_INCLUDED
28 
29 // TQt - Header
30 #include <tqtimer.h>
31 
32 // debug
33 #include <kdebug.h>
34 
36 #include "interfaces/propertiesProxy.h"
37 
38 namespace TDEBluetooth
39 {
40 
41 class TDE_EXPORT DeviceImpl: public org::bluez::Device1Proxy
42 {
43  TQ_OBJECT
44 
45 public:
46  DeviceImpl(const TQString& service, const TQString& path, TQObject* parent = 0, const char* name = 0);
47 
48  virtual ~DeviceImpl();
49  const TQString getPath();
50 
51 private:
52  TQString m_path;
53 
54 };
55 // class DeviceImpl
56 
57 };
58 // namespace TDEBluetooth
59 
60 #endif //DEVICEIMPL_H_INCLUDED
61 
62 // End of File