This file is indexed.

/usr/include/sbml/packages/render/common/renderfwd.h is in libsbml5-dev 5.10.0+dfsg-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
/**
 * @file    renderfwd.h
 * @brief   SBML RENDER C structure declarations
 * @author  Frank T. Bergmann
 *
 * $Id$
 * $HeadURL$
 *
 *<!---------------------------------------------------------------------------
 * This file is part of libSBML.  Please visit http://sbml.org for more
 * information about SBML, and the latest version of libSBML.
 *
 * Copyright 2009-2013 California Institute of Technology.
 * 
 * This library is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation.  A copy of the license agreement is provided
 * in the file named "LICENSE.txt" included with this software distribution
 * and also available online as http://sbml.org/software/libsbml/license.html
 *------------------------------------------------------------------------- -->
 */


#ifndef renderfwd_h__
#define renderfwd_h__


#include <sbml/common/libsbml-namespace.h>
#include <sbml/common/libsbml-config.h>

/**
 * Forward declaration of all opaque C types.
 *
 * Declaring all types up-front avoids "redefinition of type 'Foo'" compile
 * errors and allows our combined C/C++ headers to depend minimally upon
 * each other.  Put another way, the type definitions below serve the same
 * purpose as "class Foo;" forward declarations in C++ code.
 */

#ifdef __cplusplus
#  define CLASS_OR_STRUCT class
#else
#  define CLASS_OR_STRUCT struct
#endif  /* __cplusplus */

LIBSBML_CPP_NAMESPACE_BEGIN

typedef CLASS_OR_STRUCT ColorDefinition         ColorDefinition_t;
typedef CLASS_OR_STRUCT Ellipse                 Ellipse_t;
typedef CLASS_OR_STRUCT GlobalRenderInformation GlobalRenderInformation_t;
typedef CLASS_OR_STRUCT GlobalStyle             GlobalStyle_t;
typedef CLASS_OR_STRUCT GradientBase            GradientBase_t;
typedef CLASS_OR_STRUCT GradientStop            GradientStop_t;
typedef CLASS_OR_STRUCT GraphicalPrimitive1D    GraphicalPrimitive1D_t;
typedef CLASS_OR_STRUCT GraphicalPrimitive2D    GraphicalPrimitive2D_t;
typedef CLASS_OR_STRUCT RenderGroup             RenderGroup_t;
typedef CLASS_OR_STRUCT Image                   Image_t;
typedef CLASS_OR_STRUCT LinearGradient          LinearGradient_t;
typedef CLASS_OR_STRUCT LineEnding              LineEnding_t;
typedef CLASS_OR_STRUCT ListOfCurveElements     ListOfCurveElements_t;
typedef CLASS_OR_STRUCT LocalRenderInformation  LocalRenderInformation_t;
typedef CLASS_OR_STRUCT LocalStyle              LocalStyle_t;
typedef CLASS_OR_STRUCT Polygon                 Polygon_t;
typedef CLASS_OR_STRUCT RadialGradient          RadialGradient_t;
typedef CLASS_OR_STRUCT Rectangle               Rectangle_t;
typedef CLASS_OR_STRUCT RelAbsVector            RelAbsVector_t;
typedef CLASS_OR_STRUCT RenderCubicBezier       RenderCubicBezier_t;
typedef CLASS_OR_STRUCT RenderCurve             RenderCurve_t;
typedef CLASS_OR_STRUCT RenderInformationBase   RenderInformationBase_t;
typedef CLASS_OR_STRUCT RenderPoint             RenderPoint_t;
typedef CLASS_OR_STRUCT Style                   Style_t;
typedef CLASS_OR_STRUCT Text                    Text_t;
typedef CLASS_OR_STRUCT RenderPoint             RenderPoint_t;
typedef CLASS_OR_STRUCT Transformation          Transformation_t;
typedef CLASS_OR_STRUCT Transformation2D        Transformation2D_t;

LIBSBML_CPP_NAMESPACE_END

#undef CLASS_OR_STRUCT


#endif  /* renderfwd_h__ */