This file is indexed.

/usr/include/KDb3/KDbSelectStatementOptions.h is in libkdb3-dev 3.1.0-2.

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
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/****************************************************************************
** Shared Class code from reading file 'KDbSelectStatementOptions.shared.h'
**
** Created
**      by: The Shared Data Compiler version 0.3
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/

/* This file is part of the KDE project
   Copyright (C) 2003-2017 Jarosław Staniek <staniek@kde.org>

   This program is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public License
   along with this program; see the file COPYING.  If not, write to
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
*/

#ifndef KDB_KDBSELECTSTATEMENTOPTIONS_H
#define KDB_KDBSELECTSTATEMENTOPTIONS_H

#include "kdb_export.h"
#include <QSharedData>

class KDbConnection;
class KDbQuerySchema;
class KDbTableSchema;
class KDbEscapedString;

//! Options used in KDbNativeStatementBuilder::generateSelectStatement()
/*! @note objects of this class are implicitly shared, what means they have value semantics
          by offering copy-on-write behaviour to maximize resource usage and minimize copying.
          Only a pointer to the data is passed around. See <a href="http://doc.qt.io/qt-5/qshareddatapointer.html#details">Qt documentation</a>.
 */
//! @note This class has been generated using the following SDC class options: operator==, implicit
class KDB_EXPORT KDbSelectStatementOptions
{
public:

    //! @internal data class used to implement implicitly shared class KDbSelectStatementOptions.
    //! Provides thread-safe reference counting.
    class Data : public QSharedData
    {
    public:
        Data()
        : alsoRetrieveRecordId(false)
        , addVisibleLookupColumns(true)
        {
        }

        Data(const Data &other)
         : QSharedData(other)
         , alsoRetrieveRecordId(other.alsoRetrieveRecordId)
         , addVisibleLookupColumns(other.addVisibleLookupColumns)
        {
        }

        virtual ~Data() {}

        //! Clones the object with all attributes; the copy isn't shared with the original.
        virtual Data* clone() const { return new Data(*this); }

        bool operator==(const Data &other) const {
            return alsoRetrieveRecordId == other.alsoRetrieveRecordId
                   && addVisibleLookupColumns == other.addVisibleLookupColumns;
        }

        bool alsoRetrieveRecordId; //!< @see KDbSelectStatementOptions::alsoRetrieveRecordId(), KDbSelectStatementOptions::setAlsoRetrieveRecordId()
        bool addVisibleLookupColumns; //!< @see KDbSelectStatementOptions::addVisibleLookupColumns(), KDbSelectStatementOptions::setAddVisibleLookupColumns()
    };

    KDbSelectStatementOptions()
     : d(new Data)
    {
    }

    KDbSelectStatementOptions(const KDbSelectStatementOptions &other)
     : d(other.d)
    {
    }

    virtual ~KDbSelectStatementOptions();

    /*!
    @return @c true if record IDs should be also retrieved. @c false by default.
    */
    bool alsoRetrieveRecordId() const {
        return d->alsoRetrieveRecordId;
    }

    /*!
    Specifies whether record IDs should be also retrieved.
    */
    void setAlsoRetrieveRecordId(bool alsoRetrieveRecordId) {
        d->alsoRetrieveRecordId = alsoRetrieveRecordId;
    }

    /*!
    @return @c true if relations (LEFT OUTER JOIN) for visible lookup columns should be added.
    @c false is used only when user-visible statement is generated e.g. the one used in Kexi's
    Query Designer. @c true by default.
    */
    bool addVisibleLookupColumns() const {
        return d->addVisibleLookupColumns;
    }

    /*!
    Specifies whether if relations (LEFT OUTER JOIN) for visible lookup columns should be added.
    */
    void setAddVisibleLookupColumns(bool addVisibleLookupColumns) {
        d->addVisibleLookupColumns = addVisibleLookupColumns;
    }

    //! @return true if this object is equal to @a other; otherwise returns false.
    bool operator==(const KDbSelectStatementOptions &other) const {
        return *d == *other.d;
    }

    //! @return true if this object is not equal to @a other; otherwise returns false.
    bool operator!=(const KDbSelectStatementOptions &other) const {
        return !operator==(other);
    }



protected:
    QSharedDataPointer<Data> d;
};

#endif