This file is indexed.

/usr/include/opencollada/COLLADASaxFrameworkLoader/COLLADASaxFWLRootParser14.h is in opencollada-dev 0.1.0~20140703.ddf8f47+dfsg1-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
 97
 98
 99
100
101
/*
    Copyright (c) 2008-2009 NetAllied Systems GmbH

    This file is part of COLLADASaxFrameworkLoader.

    Licensed under the MIT Open Source License, 
    for details please see LICENSE file or the website
    http://www.opensource.org/licenses/mit-license.php
*/

#ifndef __COLLADASAXFWL_ROOTPARSER14_H__
#define __COLLADASAXFWL_ROOTPARSER14_H__

#include "COLLADASaxFWLPrerequisites.h"
#include "COLLADASaxFWLIParserImpl14.h"
#include "COLLADASaxFWLExtraDataLoader.h"


namespace COLLADASaxFWL
{
    class FileLoader;

    /**
    * Inherits all generated public parsers and delegates calls to actual implementations.
    */
    class RootParser14 : public IParserImpl14, public ExtraDataLoader
    {
    private:

        /** FileLoader which does actual work. */
        FileLoader* mFileLoader;

    public:

        RootParser14( FileLoader* fileLoader );

        /** FileLoader which does actual work. */
        FileLoader* getFileLoader () { return mFileLoader; }
        const FileLoader* getFileLoader () const { return mFileLoader; }

        /** Informs about the end of reading the COLLADA file. */
        virtual bool end__COLLADA();

        /** Sax callback function for the beginning of the COLLADA document asset information.*/
        virtual bool begin__asset();

        /** Starts loading the scene.*/
        virtual bool begin__scene();

        /** Starts loading a visual scene.*/
        virtual bool begin__geometry( const COLLADASaxFWL14::geometry__AttributeData& attributeData );

        /** Starts loading a visual scene.*/
        virtual bool begin__visual_scene( const COLLADASaxFWL14::visual_scene__AttributeData& attributeData );

        /** Starts loading a library nodes.*/
        virtual bool begin__library_nodes( const COLLADASaxFWL14::library_nodes__AttributeData& attributeData );

        /** Starts loading a library materials.*/
        virtual bool begin__library_materials( const COLLADASaxFWL14::library_materials__AttributeData& attributeData );

        /** Starts loading a library effects.*/
        virtual bool begin__library_effects( const COLLADASaxFWL14::library_effects__AttributeData& attributeData );

        /** Starts loading a library cameras.*/
        virtual bool begin__library_cameras( const COLLADASaxFWL14::library_cameras__AttributeData& attributeData );

        /** Starts loading a library lights.*/
        virtual bool begin__library_lights( const COLLADASaxFWL14::library_lights__AttributeData& attributeData );

        /** Starts loading a library images.*/
        virtual bool begin__library_images( const COLLADASaxFWL14::library_images__AttributeData& attributeData );

        /** Starts loading a library animations.*/
        virtual bool begin__library_animations( const COLLADASaxFWL14::library_animations__AttributeData& attributeData );

        /** Starts loading a library animations.*/
        virtual bool begin__library_controllers( const COLLADASaxFWL14::library_controllers__AttributeData& attributeData );

        /** Starts loading an extra tag. */
        virtual bool begin__technique( const COLLADASaxFWL14::technique__AttributeData& attributeData );

    private:
        /** Disable default c-ctor and assignment op. */
        RootParser14( const RootParser14& );
        const RootParser14& operator=( const RootParser14& );

		template<class Loader, class Loader14>
		Loader* beginCommon();

		template<class Loader, class Loader14>
		Loader* beginCommonWithId( const char * id);

		template<class Loader, class Loader14>
		Loader* beginCommonCTorWithId(  const char * id );


    };
}

#endif // __COLLADASAXFWL_ROOTPARSER14_H__