This file is indexed.

/usr/include/omniORB4/CORBA_NamedValue.h is in libomniorb4-dev 4.1.6-1.

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
145
146
147
148
149
150
151
152
153
// -*- Mode: C++; -*-
//                            Package   : omniORB
// CORBA_NamedValue.h         Created on: 2001/08/17
//                            Author    : Duncan Grisby (dpg1)
//
//    Copyright (C) 2001 AT&T Laboratories Cambridge
//
//    This file is part of the omniORB library
//
//    The omniORB 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; if not, write to the Free
//    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
//    02111-1307, USA
//
//
// Description:
//    CORBA::NamedValue, NVList
//

/*
  $Log$
  Revision 1.1.4.1  2003/03/23 21:04:24  dgrisby
  Start of omniORB 4.1.x development branch.

  Revision 1.1.2.3  2001/11/13 14:11:43  dpg1
  Tweaks for CORBA 2.5 compliance.

  Revision 1.1.2.2  2001/11/06 15:41:34  dpg1
  Reimplement Context. Remove CORBA::Status. Tidying up.

  Revision 1.1.2.1  2001/08/17 13:39:46  dpg1
  Split CORBA.h into separate bits.

*/

#ifndef INSIDE_OMNIORB_CORBA_MODULE
#  error "Must only be #included by CORBA.h"
#endif

//////////////////////////////////////////////////////////////////////
///////////////////////////// NamedValue /////////////////////////////
//////////////////////////////////////////////////////////////////////

enum _Flags {
  ARG_IN              = 0x1,
  ARG_OUT             = 0x2,
  ARG_INOUT           = 0x3, //?  Defined in CORBA 2.5. Odd.
  CTX_RESTRICT_SCOPE  = 0xF, //?  Defined in CORBA 2.5. Odd.
  OUT_LIST_MEMORY     = 0x10,
  IN_COPY_VALUE       = 0x20
};

typedef ULong Flags;

class NamedValue;
typedef NamedValue* NamedValue_ptr;
typedef NamedValue_ptr NamedValueRef;
typedef _CORBA_PseudoObj_Var<NamedValue> NamedValue_var;
typedef _CORBA_PseudoObj_Out<NamedValue,NamedValue_var> NamedValue_out;

class NamedValue {
public:
  virtual ~NamedValue();

  virtual const char* name() const = 0;
  // Retains ownership of return value.

  virtual Any* value() const = 0;
  // Retains ownership of return value.

  virtual Flags flags() const = 0;

  virtual Boolean NP_is_nil() const = 0;
  virtual NamedValue_ptr NP_duplicate() = 0;

  static NamedValue_ptr _duplicate(NamedValue_ptr);
  static NamedValue_ptr _nil();

  static inline _CORBA_Boolean PR_is_valid(NamedValue_ptr p ) {
    return ((p) ? (p->pd_magic == PR_magic) : 1);
  }

  static _dyn_attr const _CORBA_ULong PR_magic;

protected:
  NamedValue() { pd_magic = PR_magic; }

private:
  _CORBA_ULong pd_magic;

  NamedValue(const NamedValue&);
  NamedValue& operator=(const NamedValue&);
};


//////////////////////////////////////////////////////////////////////
/////////////////////////////// NVList ///////////////////////////////
//////////////////////////////////////////////////////////////////////

class NVList;
typedef NVList* NVList_ptr;
typedef NVList_ptr NVListRef;
typedef _CORBA_PseudoObj_Var<NVList> NVList_var;
typedef _CORBA_PseudoObj_Out<NVList,NVList_var> NVList_out;

class NVList {
public:
  virtual ~NVList();

  virtual ULong count() const = 0;
  virtual NamedValue_ptr add(Flags) = 0;
  virtual NamedValue_ptr add_item(const char*, Flags) = 0;
  virtual NamedValue_ptr add_value(const char*, const Any&, Flags) = 0;
  virtual NamedValue_ptr add_item_consume(char*,Flags) = 0;
  virtual NamedValue_ptr add_value_consume(char*, Any*, Flags) = 0;
  virtual NamedValue_ptr item(ULong index) = 0;
  virtual void remove (ULong) = 0;

  virtual Boolean NP_is_nil() const = 0;
  virtual NVList_ptr NP_duplicate() = 0;

  static NVList_ptr _duplicate(NVList_ptr);
  static NVList_ptr _nil();

  // OMG Interface:

  OMNIORB_DECLARE_USER_EXCEPTION_IN_CORBA(Bounds, _dyn_attr)

  static inline _CORBA_Boolean PR_is_valid(NVList_ptr p ) {
    return ((p) ? (p->pd_magic == PR_magic) : 1);
  }

  static _dyn_attr const _CORBA_ULong PR_magic;

protected:
  NVList() { pd_magic = PR_magic; }

private:
  _CORBA_ULong pd_magic;

  NVList(const NVList& nvl);
  NVList& operator=(const NVList&);
};