This file is indexed.

/usr/include/libindicate-qt/qindicatedecode.h is in libindicate-qt-dev 0.2.5.91-5.

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
/*
 * Qt wrapper for libindicate
 *
 * Copyright 2009 Canonical Ltd.
 *
 * Authors:
 * - Aurélien Gâteau <aurelien.gateau@canonical.com>
 *
 * License: LGPL v2.1 or LGPL v3
 */
#ifndef QINDICATEDECODE_H
#define QINDICATEDECODE_H

// Qt
#include <QDateTime>
#include <QImage>

// Local
#include <qindicate_export.h>

namespace QIndicate
{

/**
 * This namespace provides functions to decode the value of serialized properties
 */
namespace Decode
{

INDICATEQT_EXPORT QString stringFromValue(const QByteArray&);
INDICATEQT_EXPORT int intFromValue(const QByteArray&, int defaultValue=0);
INDICATEQT_EXPORT bool boolFromValue(const QByteArray&, bool defaultValue=false);
INDICATEQT_EXPORT QImage imageFromValue(const QByteArray&);
INDICATEQT_EXPORT QDateTime dateTimeFromValue(const QByteArray&);

} // namespace

} // namespace

#endif /* QINDICATEDECODE_H */