/usr/include/simgear/structure/intern.hxx is in libsimgear-dev 3.0.0-6+b2.
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 | #ifndef SIMGEAR_INTERN_HXX
#define SIMGEAR_INTERN_HXX 1
#include <string>
namespace simgear
{
/**
* Return a pointer to a single string object for a given string.
*/
const std::string* intern(const std::string& str);
}
#endif
|