This file is indexed.

/usr/include/oce/AIS_Selection.hxx is in liboce-visualization-dev 0.18.2-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
 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
// This file is generated by WOK (CPPExt).
// Please do not edit this file; modify original file instead.
// The copyright and license terms as defined for the original file apply to 
// this header file considered to be the "object code" form of the original source.

#ifndef _AIS_Selection_HeaderFile
#define _AIS_Selection_HeaderFile

#include <Standard.hxx>
#include <Standard_DefineHandle.hxx>
#include <Handle_AIS_Selection.hxx>

#include <TCollection_AsciiString.hxx>
#include <AIS_NListTransient.hxx>
#include <AIS_NListIteratorOfListTransient.hxx>
#include <AIS_NDataMapOfTransientIteratorOfListTransient.hxx>
#include <Standard_Integer.hxx>
#include <MMgt_TShared.hxx>
#include <Standard_CString.hxx>
#include <Standard_Boolean.hxx>
#include <AIS_SelectStatus.hxx>
#include <Handle_Standard_Transient.hxx>
class Standard_NoSuchObject;
class Standard_MultiplyDefined;
class Standard_TypeMismatch;
class Standard_Transient;



class AIS_Selection : public MMgt_TShared
{

public:

  
  //! creates a new selection and make it current in the session.
  //! the selection will be accessible later through its name
  //! to make it again current.
  //!
  //! Note that if a session has been created, a session with
  //! the name  "default" is created.
  //!
  //! In this case, the is always a current selection which
  //! is the last one created  until SetCurrentSelection is used.
  //!
  //! The class methods deals with the current selection.
  //!
  //! Warning : Better Call AIS_Selection::CreateSelection.
  Standard_EXPORT AIS_Selection(const Standard_CString aName);
  
  Standard_EXPORT static   void Remove (const Standard_CString aName) ;
  
  //! returns True if a selection having this name exsits.
  Standard_EXPORT static   Standard_Boolean Find (const Standard_CString aName) ;
  
  //! calls the private constructor and puts the new Selection
  //! in the list of existing selections.
  //! returns False if the selection exists.
  Standard_EXPORT static   Standard_Boolean CreateSelection (const Standard_CString aName) ;
  
  Standard_EXPORT static   Handle(AIS_Selection) Selection (const Standard_CString aName) ;
  
  //! returns False if There is no selection of name <aName>
  Standard_EXPORT static   Standard_Boolean SetCurrentSelection (const Standard_CString aName) ;
  
  Standard_EXPORT static   Handle(AIS_Selection) CurrentSelection() ;
  
  //! Clears selection.
  Standard_EXPORT static   void ClearCurrentSelection() ;
  
  //! removes all the object of the currentselection.
  Standard_EXPORT static   void Select() ;
  
  //! if the object is not yet in the current selection, it will be added.
  //! if the object is already in the current selection, it will be removed.
  Standard_EXPORT static   AIS_SelectStatus Select (const Handle(Standard_Transient)& anObject) ;
  
  //! the object is always add int the selection.
  //! faster when the number of objects selected is great.
  Standard_EXPORT static   AIS_SelectStatus AddSelect (const Handle(Standard_Transient)& anObject) ;
  
  //! clears the selection and adds the object in the selection.
  Standard_EXPORT static   void ClearAndSelect (const Handle(Standard_Transient)& anObject) ;
  
  Standard_EXPORT static   Standard_Boolean IsSelected (const Handle(Standard_Transient)& anObject) ;
  
  //! returns the number of objects selected.
  Standard_EXPORT static   Standard_Integer Extent() ;
  
  //! returns the single object selected.
  //! Warning: raises TypeMismatch from Standard if Extent is not equal to 1.
  Standard_EXPORT static   Handle(Standard_Transient) Single() ;
  
      void Init() ;
  
      Standard_Boolean More()  const;
  
      void Next() ;
  
     const  Handle(Standard_Transient)& Value()  const;
  
      Standard_Integer NbStored()  const;
  
     const  AIS_NListTransient& Objects()  const;
  
  Standard_EXPORT static   Standard_Integer Index (const Standard_CString aName) ;




  DEFINE_STANDARD_RTTI(AIS_Selection)

protected:




private: 


  TCollection_AsciiString myName;
  AIS_NListTransient myresult;
  AIS_NListIteratorOfListTransient myIterator;
  AIS_NDataMapOfTransientIteratorOfListTransient myResultMap;
  Standard_Integer myNb;


};


#include <AIS_Selection.lxx>





#endif // _AIS_Selection_HeaderFile