This file is indexed.

/usr/include/mialm/mialandmarklist.h is in libmialm-dev 1.0.8-2.

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
/*
 *  Copyright (c) 2004-2013 Gert Wollny <gw.fossdev@gmail.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; either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 *
 *  As an exception to this license, "NEC C&C Research Labs" may use
 *  this software under the terms of the GNU Lesser General Public License as
 *  published by the Free Software Foundation.
 *
 */
 
#ifndef __landmarklist_h
#define __landmarklist_h

#include <glib.h>
#include <glib-object.h>

#include <mialm/mialandmark.h>
	

#define MIA_TYPE_LANDMARKLIST (mia_landmarklist_get_type())
#define MIA_LANDMARKLIST(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), MIA_TYPE_LANDMARKLIST, MiaLandmarklist))
#define MIA_LANDMARKLIST_CLASS(vtable) (G_TYPE_CHECK_CLASS_CAST((vtable),MIA_TYPE_LANDMARKLIST, MiaLandmarklistClass))
#define MIA_IS_LANDMARKLIST(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),MIA_TYPE_LANDMARKLIST))
#define MIA_IS_LANDMARKLIST_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE((obj),MIA_TYPE_LANDMARKLIST))
#define MIA_LANDMARKLIST_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS((inst), MIA_TYPE_LANDMARKLIST, MiaLandmarklistClass))


/**
 * MiaLandmarklist: 
 * 
 * #MiaLandmarklist is an opaque structure to store landmarks in 3D space. 
 */

typedef struct _MiaLandmarklist MiaLandmarklist;

typedef struct _MiaLandmarklistClass MiaLandmarklistClass;
struct _MiaLandmarklistClass {
	GObjectClass parent;
};

extern const ParserTags landmarklist_parser_tags[];

G_BEGIN_DECLS

GType mia_landmarklist_get_type(void);

MiaLandmarklist *mia_landmarklist_new(const gchar *name);

gboolean
mia_landmarklist_insert(MiaLandmarklist *self, MiaLandmark *lm);

MiaLandmark *
mia_landmarklist_get_landmark(MiaLandmarklist *self, const gchar *key);

void 
mia_landmarklist_delete_landmark(MiaLandmarklist *self, const gchar *key);

void
mia_landmarklist_set_name(MiaLandmarklist *self, const gchar *name);

const gchar *
mia_landmarklist_get_name(MiaLandmarklist *self);

const gchar *mia_landmarklist_get_selected(MiaLandmarklist *self);

void mia_landmarklist_set_selected(MiaLandmarklist *self, const gchar *selected);

void 
mia_landmarklist_foreach(MiaLandmarklist *self, 
			 GHFunc callback, gpointer user_data);

void 
mia_landmarklist_clear_locations(MiaLandmarklist *self);

gboolean 
mia_landmarklist_xmlio_write(xmlNodePtr parent, xmlNsPtr ns, MiaLandmarklist *list);


gboolean mia_landmarklist_test(void);

G_END_DECLS

#endif