This file is indexed.

/usr/include/opencascade/NCollection_DefineSequence.hxx is in libopencascade-foundation-dev 6.5.0.dfsg-2build1.

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
// File:        NCollection_DefineSequence.hxx
// Created:     28.03.02 20:41:43
// Author:      Alexander GRIGORIEV
//            Automatically created from NCollection_Sequence.hxx by GAWK
// Copyright:   Open Cascade 2002
//           
// Purpose:     Definition of a sequence of elements indexed by
//              an Integer in range of 1..n
//              


#ifndef NCollection_DefineSequence_HeaderFile
#define NCollection_DefineSequence_HeaderFile

#include <NCollection_DefineBaseCollection.hxx>
#include <NCollection_Sequence.hxx>

#ifdef WNT
// Disable the warning "operator new unmatched by delete"
#pragma warning (disable:4291)
#endif

// **************************************** Template for Sequence class ********

#define DEFINE_SEQUENCE(_ClassName_, _BaseCollection_, TheItemType)            \
        typedef NCollection_Sequence<TheItemType > _ClassName_;

#endif