This file is indexed.

/usr/include/soprano/rdf.h is in libsoprano-dev 2.9.4+dfsg-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
 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
141
142
143
144
/*
 * This file has been generated by the onto2vocabularyclass tool
 * copyright (C) 2007-2008 Sebastian Trueg <trueg@kde.org>
 *
 * This library 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 library 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 library; see the file COPYING.LIB.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 */

#ifndef _SOPRANO_RDF_H_
#define _SOPRANO_RDF_H_

#include <QtCore/QUrl>
#include "soprano_export.h"

namespace Soprano {
    namespace Vocabulary {
        namespace RDF {
            /**
             * http://www.w3.org/1999/02/22-rdf-syntax-ns#
             */
            SOPRANO_EXPORT QUrl rdfNamespace();

            /**
             * http://www.w3.org/1999/02/22-rdf-syntax-ns#Alt 
             * 
             * The class of containers of alternatives. 
             */
            SOPRANO_EXPORT QUrl Alt();

            /**
             * http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag 
             * 
             * The class of unordered containers. 
             */
            SOPRANO_EXPORT QUrl Bag();

            /**
             * http://www.w3.org/1999/02/22-rdf-syntax-ns#List 
             * 
             * The class of RDF Lists. 
             */
            SOPRANO_EXPORT QUrl List();

            /**
             * http://www.w3.org/1999/02/22-rdf-syntax-ns#Property 
             * 
             * The class of RDF properties. 
             */
            SOPRANO_EXPORT QUrl Property();

            /**
             * http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq 
             * 
             * The class of ordered containers. 
             */
            SOPRANO_EXPORT QUrl Seq();

            /**
             * http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement 
             * 
             * The class of RDF statements. 
             */
            SOPRANO_EXPORT QUrl Statement();

            /**
             * http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral 
             * 
             * The class of XML literal values. 
             */
            SOPRANO_EXPORT QUrl XMLLiteral();

            /**
             * http://www.w3.org/1999/02/22-rdf-syntax-ns#first 
             * 
             * The first item in the subject RDF list. 
             */
            SOPRANO_EXPORT QUrl first();

            /**
             * http://www.w3.org/1999/02/22-rdf-syntax-ns#nil 
             * 
             * The empty list, with no items in it. If the rest of a list is nil 
             * then the list has no more items in it. 
             */
            SOPRANO_EXPORT QUrl nil();

            /**
             * http://www.w3.org/1999/02/22-rdf-syntax-ns#object 
             * 
             * The object of the subject RDF statement. 
             */
            SOPRANO_EXPORT QUrl object();

            /**
             * http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate 
             * 
             * The predicate of the subject RDF statement. 
             */
            SOPRANO_EXPORT QUrl predicate();

            /**
             * http://www.w3.org/1999/02/22-rdf-syntax-ns#rest 
             * 
             * The rest of the subject RDF list after the first item. 
             */
            SOPRANO_EXPORT QUrl rest();

            /**
             * http://www.w3.org/1999/02/22-rdf-syntax-ns#subject 
             * 
             * The subject of the subject RDF statement. 
             */
            SOPRANO_EXPORT QUrl subject();

            /**
             * http://www.w3.org/1999/02/22-rdf-syntax-ns#type 
             * 
             * The subject is an instance of a class. 
             */
            SOPRANO_EXPORT QUrl type();

            /**
             * http://www.w3.org/1999/02/22-rdf-syntax-ns#value 
             * 
             * Idiomatic property used for structured values. 
             */
            SOPRANO_EXPORT QUrl value();
        }
    }
}

#endif