This file is indexed.

/usr/include/shogun/ui/GUILabels.h is in libshogun-dev 3.2.0-7.3build4.

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
/*
 * 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; either version 3 of the License, or
 * (at your option) any later version.
 *
 * Written (W) 1999-2008 Soeren Sonnenburg
 * Written (W) 1999-2008 Gunnar Raetsch
 * Copyright (C) 1999-2008 Fraunhofer Institute FIRST and Max-Planck-Society
 */

#ifndef __GUILABELS__H_
#define __GUILABELS__H_

#include <shogun/lib/config.h>
#include <shogun/base/SGObject.h>
#include <shogun/labels/Labels.h>

namespace shogun
{
class CSGInterface;

/** @brief UI labels */
class CGUILabels : public CSGObject
{
	public:
		/** constructor */
		CGUILabels() {};
		/** constructor
		 * @param interface
		 */
		CGUILabels(CSGInterface* interface);
		/** destructor */
		~CGUILabels();

		/** get train labels */
		CLabels *get_train_labels() { return train_labels; }
		/** get test labels */
		CLabels *get_test_labels() { return test_labels; }

		/** set train labels
		 * @param lab
		 */
		bool set_train_labels(CLabels* lab) { SG_REF(lab); SG_UNREF(train_labels); train_labels=lab; return true;}
		/** set test labels
		 * @param lab
		 */
		bool set_test_labels(CLabels* lab) { SG_REF(lab); SG_UNREF(test_labels); test_labels=lab; return true;}

		/** load labels from file
		 * @param filename
		 * @param target
		 */
		bool load(char* filename, char* target);
		/** save
		 * @param param
		 */
		bool save(char* param);

		/** infer labels from array
		 *
		 * @param lab array
		 * @param len length of array
		 * @return labels
		 */
		CLabels* infer_labels(float64_t* lab, int32_t len);

		/** @return object name */
		virtual const char* get_name() const { return "GUILabels"; }

	protected:
		/** ui */
		CSGInterface* ui;
		/** train labels */
		CLabels *train_labels;
		/** test labels */
		CLabels *test_labels;
};
}
#endif