This file is indexed.

/usr/include/qgis/qgssymbologyv2conversion.h is in libqgis-dev 1.7.4+1.7.5~20120320-1.1+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
#ifndef QGSSYMBOLOGYV2CONVERSION_H
#define QGSSYMBOLOGYV2CONVERSION_H

class QgsSymbol;
class QgsSymbolV2;
class QgsVectorLayer;

class CORE_EXPORT QgsSymbologyV2Conversion
{
  public:

    //! return a symbol in new symbology as close as possible to old symbol
    //! @note not all properties will be preserved
    static QgsSymbolV2* symbolV1toV2( const QgsSymbol* s );

    //! return a symbol in old symbology as close as possible to new symbol
    //! @note not all properties will be preserved
    static QgsSymbol* symbolV2toV1( QgsSymbolV2* s );

    //! convert layer from old symbology to new symbology
    //! @note not all properties will be preserved
    static void rendererV1toV2( QgsVectorLayer* layer );

    //! convert layer from new symbology to old symbology
    //! @note not all properties will be preserved
    static void rendererV2toV1( QgsVectorLayer* layer );

};

#endif // QGSSYMBOLOGYV2CONVERSION_H