This file is indexed.

/usr/include/psurface/AmiraMeshIO.h is in libpsurface-dev 2.0.0-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
#ifndef AMIRAMESH_IO_H
#define AMIRAMESH_IO_H

#include "psurfaceAPI.h"

// forward declaration for stuff outside of namespace 'psurface'
class AmiraMesh;
#ifdef PSURFACE_STANDALONE
namespace psurface { class Surface; }
#else
class Surface;
#endif

namespace psurface {

// further forward declarations
template <int dim, class ctype> class PSurface;

template <class ctype>
class PSURFACE_API AmiraMeshIO
{
public:

#if defined HAVE_AMIRAMESH || !defined PSURFACE_STANDALONE
    /// Writes the parametrization in AmiraMesh format
    static int writeAmiraMesh(PSurface<2,ctype>* psurface, const char* filename);

    /** \brief Reads the parametrization from an AmiraMesh object
        \todo The return value should be PSurface<dim,ctype>*
    */
    static void* readAmiraMesh(AmiraMesh* am, const char* filename);

    /// AmiraMesh Reader using an existing AmiraMesh object (is used by derived classes)
    static bool initFromAmiraMesh(PSurface<2,ctype>* psurface, AmiraMesh* am, const char* filename, Surface* surf);
#endif

};

} // namespace psurface

#endif