~ubuntu-branches/ubuntu/trusty/digikam/trusty

« back to all changes in this revision

Viewing changes to extra/kipi-plugins/dlnaexport/extra/hupnp_av/src/mediarenderer/hmediarenderer_deviceconfiguration_p.h

  • Committer: Package Import Robot
  • Author(s): Mark Purcell
  • Date: 2012-09-27 21:41:30 UTC
  • mfrom: (1.2.43)
  • mto: This revision was merged to the branch mainline in revision 86.
  • Revision ID: package-import@ubuntu.com-20120927214130-i8v3ufr21nesp29i
Tags: 4:3.0.0~beta1a-1
* New upstream release

* Fix "wrongly conflicts phonon-backend-vlc" dropped (Closes: #688142)
* debian/watch include download.kde.org

* digikam 3.0.0 uses features from unreleased kdegraphics >=4.10 & ships 
a private version of the kdegraphics libs - this is not the Debian way :-(
* Unsatisfactory Conflicts: libkipi8, libkexiv2-10, libkdcraw20, libksane0
* Suspend digikam-dbg >130Mb

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  Copyright (C) 2011 Tuomo Penttinen, all rights reserved.
 
3
 *
 
4
 *  Author: Tuomo Penttinen <tp@herqq.org>
 
5
 *
 
6
 *  This file is part of Herqq UPnP Av (HUPnPAv) library.
 
7
 *
 
8
 *  Herqq UPnP Av is free software: you can redistribute it and/or modify
 
9
 *  it under the terms of the GNU General Public License as published by
 
10
 *  the Free Software Foundation, either version 3 of the License, or
 
11
 *  (at your option) any later version.
 
12
 *
 
13
 *  Herqq UPnP Av is distributed in the hope that it will be useful,
 
14
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
16
 *  GNU General Public License for more details.
 
17
 *
 
18
 *  You should have received a copy of the GNU General Public License
 
19
 *  along with Herqq UPnP Av. If not, see <http://www.gnu.org/licenses/>.
 
20
 */
 
21
 
 
22
#ifndef HMEDIARENDERER_CONFIGURATION_P_H_
 
23
#define HMEDIARENDERER_CONFIGURATION_P_H_
 
24
 
 
25
//
 
26
// !! Warning !!
 
27
//
 
28
// This file is not part of public API and it should
 
29
// never be included in client code. The contents of this file may
 
30
// change or the file may be removed without of notice.
 
31
//
 
32
 
 
33
#include "hrendererconnection_manager.h"
 
34
 
 
35
#include <QtCore/QPointer>
 
36
 
 
37
namespace Herqq
 
38
{
 
39
 
 
40
namespace Upnp
 
41
{
 
42
 
 
43
namespace Av
 
44
{
 
45
 
 
46
//
 
47
//
 
48
//
 
49
class H_UPNP_AV_EXPORT HMediaRendererDeviceConfigurationPrivate
 
50
{
 
51
H_DISABLE_COPY(HMediaRendererDeviceConfigurationPrivate)
 
52
 
 
53
public:
 
54
 
 
55
    QPointer<HRendererConnectionManager> m_mm;
 
56
    int* m_refCnt;
 
57
    bool m_hasOwnership;
 
58
 
 
59
    HMediaRendererDeviceConfigurationPrivate();
 
60
    virtual ~HMediaRendererDeviceConfigurationPrivate();
 
61
 
 
62
    void detach();
 
63
};
 
64
 
 
65
}
 
66
}
 
67
}
 
68
 
 
69
#endif /* HMEDIARENDERER_CONFIGURATION_P_H_ */