This file is indexed.

/usr/include/OGRE/OgreUserObjectBindings.h is in libogre-1.8-dev 1.8.0+dfsg1-7+b1.

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
/*
-----------------------------------------------------------------------------
This source file is part of OGRE
(Object-oriented Graphics Rendering Engine)
For the latest info, see http://www.ogre3d.org/

Copyright (c) 2000-2012 Torus Knot Software Ltd

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-----------------------------------------------------------------------------
*/
#ifndef _UserObjectsBinding_H__
#define _UserObjectsBinding_H__

#include "OgrePrerequisites.h"
#include "OgreAny.h"

namespace Ogre {

	/** \addtogroup Core
	*  @{
	*/
	/** \addtogroup Scene
	*  @{
	*/

	/** Class that provide convenient interface to establish a linkage between
	custom user application objects and Ogre core classes.
	Any instance of Ogre class that will derive from this class could be associated with custom 
	application object using this class interface.
	*/
	class _OgreExport UserObjectBindings : public GeneralAllocatedObject
	{
	public:	
		/** Class constructor. */
		UserObjectBindings();

		/** Class destructor. */
		virtual ~UserObjectBindings();

		/** Sets any kind of user object on this class instance.
		@remarks
		This method allows you to associate any user object you like with 
		this class. This can be a pointer back to one of your own
		classes for instance.
		@note This method is key less meaning that each call for it will override
		previous object that were set. If you need to associate multiple objects
		with this class use the extended version that takes key.
		*/
		void setUserAny(const Any& anything);

		/** Retrieves the custom key less user object associated with this class.
		*/
		const Any& getUserAny(void) const;

		/** Sets any kind of user object on this class instance.
		@remarks
		This method allows you to associate multiple object with this class. 
		This can be a pointer back to one of your own classes for instance.
		Use a unique key to distinguish between each of these objects. 
		@param key The key that this data is associate with.
		@param anything The data to associate with the given key.
		*/
		void setUserAny(const String& key, const Any& anything);

		/** Retrieves the custom user object associated with this class and key.
		@param key The key that the requested user object is associated with.
		@remarks
		In case no object associated with this key the returned Any object will be empty.
		*/
		const Any& getUserAny(const String& key) const;

		/** Erase the custom user object associated with this class and key from this binding.
		@param key The key that the requested user object is associated with.		
		*/
		void eraseUserAny(const String& key);

		/** Clear all user objects from this binding.	*/
		void clear() const;

		/** Returns empty user any object.
		*/
		static const Any& getEmptyUserAny() { return msEmptyAny; }

	// Types.
	protected:		
		typedef map<String, Any>::type			UserObjectsMap;
		typedef UserObjectsMap::iterator		UserObjectsMapIterator;
		typedef UserObjectsMap::const_iterator	UserObjectsMapConstIterator;

		/** Internal class that uses as data storage container.
		*/
		class Attributes : public GeneralAllocatedObject
		{
		public:
			/** Attribute storage ctor. */
			Attributes() : mUserObjectsMap(NULL) {}

			/** Attribute storage dtor. */
			~Attributes()
			{
				if (mUserObjectsMap != NULL)
				{
					OGRE_DELETE mUserObjectsMap;
					mUserObjectsMap = NULL;
				}				
			}

			Any					mKeylessAny;		// Will hold key less associated user object for fast access. 	
			UserObjectsMap*		mUserObjectsMap;	// Will hold a map between user keys to user objects.
		};

	// Attributes.
	private:
		static Any				msEmptyAny;			// Shared empty any object.
		mutable Attributes*		mAttributes;		// Class attributes - will be allocated on demand.
		
	};

	/** @} */
	/** @} */
}

#endif