This file is indexed.

/usr/include/OpenDRIM/Association.h is in libopendrim0-dev 1.1.3-0ubuntu3.

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
/*################################################################################
# Linux Management Providers (LMP), Provider Common Library
# Copyright (C) 2007 Frederic Desmons, ETRI <desmons@etri.re.kr, desmons_frederic@yahoo.fr>
# 
# This program is being developed under the "OpenDRIM" project.
# The "OpenDRIM" project web page: http://opendrim.sourceforge.net
# The "OpenDRIM" project mailing list: opendrim@googlegroups.com
# 
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; version 2
# of the License.
# 
# This program 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 General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
#################################################################################

#################################################################################
# To contributors, please leave your contact information in this section
# AND comment your changes in the source code.
# 
# Modified by <Author(s)>, <Affiliation>, <Year>
################################################################################*/

#ifndef ASSOCIATION_H_
#define ASSOCIATION_H_

#include "Instance.h"
#include "CMPIBroking.h"

// DEPRECATED by Frederic Desmons, ETRI <desmons@etri.re.kr, desmons_frederic@yahoo.fr> (2007/05/22)
int CA_resolveDirection(const CMPIBroker* broker, const string& refLeftClass, const string& refRightClass, const string& known, const string& unknown, Objectpath& left, Objectpath& right, const Objectpath& Known, int& direction, string& errorMessage);

// DEPRECATED by Frederic Desmons, ETRI <desmons@etri.re.kr, desmons_frederic@yahoo.fr> (2007/05/22)
int CA_associatorFilter(const CMPIBroker* broker, const CMPIContext* ctx, const string& assocClass, const string& resultClass, const string& classname, const string refLeftClass, const string& refRightClass, const string& refLeft, const string& refRight, const string& role, const string& resultRole, Objectpath& left, Objectpath& right, const Objectpath& Known, int& direction, string& errorMessage);

// DEPRECATED by Frederic Desmons, ETRI <desmons@etri.re.kr, desmons_frederic@yahoo.fr> (2007/05/22)
int CA_referenceFilter(const CMPIBroker* broker, const CMPIContext* ctx, const string& assocClass, const string& classname, const string& refLeftClass, const string& refRightClass, const string& refLeft, const string& refRight, const string& role, Objectpath& left, Objectpath& right, const Objectpath& Known, int& direction, string& errorMessage);

// Added by Frederic Desmons, ETRI <desmons@etri.re.kr, desmons_frederic@yahoo.fr> (2007/05/22)
int CA_associatorResolveDirection(const char* leftClasses[], const char* rightClasses[], const string& leftNamespace, const string& rightNamespace, const string& leftRole, const string& rightRole, const Objectpath& known, const string& resultClass, const string& role, const string& resultRole, bool& leftToRight);

// Added by Ilsoo Byun, ETRI <widepis@etri.re.kr, widepis@gmail.com> (2007/11/07)
int CA_associatorResolveDirection(const CMPIBroker* broker, const char* leftClasses[], const char* rightClasses[], const string& leftNamespace, const string& rightNamespace, const string& leftRole, const string& rightRole, const Objectpath& known, const string& resultClass, const string& role, const string& resultRole, bool& leftToRight);
#endif /*ASSOCIATION_H_*/