/usr/include/simgear/props/vectorPropTemplates.hxx is in libsimgear-dev 3.0.0-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 | // vectorPropTemplates.hxx -- Templates Requiring Vector Properties
//
// Separate header file for any templates requiring SGVecXX vector types.
#ifndef __VECTORPROPTEMPLATES_HXX
#define __VECTORPROPTEMPLATES_HXX
#include "props.hxx"
// The templates below depend on the full SGMath.hxx include. Forward
// declarations (SGMathFwd.hxx) would be insufficient here (at least with MSVC).
#include <simgear/math/SGMath.hxx>
namespace simgear
{
// Extended properties
template<>
std::istream& readFrom<SGVec3d>(std::istream& stream, SGVec3d& result);
template<>
std::istream& readFrom<SGVec4d>(std::istream& stream, SGVec4d& result);
namespace props
{
template<>
struct PropertyTraits<SGVec3d>
{
static const Type type_tag = VEC3D;
enum { Internal = 0 };
};
template<>
struct PropertyTraits<SGVec4d>
{
static const Type type_tag = VEC4D;
enum { Internal = 0 };
};
}
}
template<>
std::ostream& SGRawBase<SGVec3d>::printOn(std::ostream& stream) const;
template<>
std::ostream& SGRawBase<SGVec4d>::printOn(std::ostream& stream) const;
#endif // __VECTORPROPTEMPLATES_HXX
// end of vectorPropTemplates.hxx
|