/usr/include/dnssd/settings.h is in kdelibs5-dev 4:4.14.2-5+deb8u2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | // This file is generated by kconfig_compiler from kcm_kdnssd.kcfg.
// All changes you do to this file will be lost.
#ifndef DNSSD_CONFIGURATION_H
#define DNSSD_CONFIGURATION_H
#include <dnssd/dnssd_export.h>
#include <kconfigskeleton.h>
#include <kdebug.h>
namespace DNSSD {
class KDNSSD_EXPORT Configuration : public KConfigSkeleton
{
public:
static Configuration *self();
~Configuration();
/**
Set Additional domains for browsing
*/
static
void setDomainList( const QStringList & v )
{
if (!self()->isImmutable( QString::fromLatin1( "DomainList" ) ))
self()->mDomainList = v;
}
/**
Get Additional domains for browsing
*/
static
QStringList domainList()
{
return self()->mDomainList;
}
protected:
Configuration();
friend class ConfigurationHelper;
// browsing
QStringList mDomainList;
private:
};
}
#endif
|