/usr/include/irrlicht/path.h is in libirrlicht-dev 1.8.1+dfsg1-1+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 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 | // Copyright (C) 2002-2012 Nikolaus Gebhardt
// This file is part of the "Irrlicht Engine" and the "irrXML" project.
// For conditions of distribution and use, see copyright notice in irrlicht.h
#ifndef __IRR_PATH_H_INCLUDED__
#define __IRR_PATH_H_INCLUDED__
#include "irrString.h"
namespace irr
{
namespace io
{
//! Type used for all file system related strings.
/** This type will transparently handle different file system encodings. */
typedef core::string<fschar_t> path;
//! Used in places where we identify objects by a filename, but don't actually work with the real filename
/** Irrlicht is internally not case-sensitive when it comes to names.
Also this class is a first step towards support for correctly serializing renamed objects.
*/
struct SNamedPath
{
//! Constructor
SNamedPath() {}
//! Constructor
SNamedPath(const path& p) : Path(p), InternalName( PathToName(p) )
{
}
//! Is smaller comparator
bool operator <(const SNamedPath& other) const
{
return InternalName < other.InternalName;
}
//! Set the path.
void setPath(const path& p)
{
Path = p;
InternalName = PathToName(p);
}
//! Get the path.
const path& getPath() const
{
return Path;
};
//! Get the name which is used to identify the file.
//! This string is similar to the names and filenames used before Irrlicht 1.7
const path& getInternalName() const
{
return InternalName;
}
//! Implicit cast to io::path
operator core::stringc() const
{
return core::stringc(getPath());
}
//! Implicit cast to io::path
operator core::stringw() const
{
return core::stringw(getPath());
}
protected:
// convert the given path string to a name string.
path PathToName(const path& p) const
{
path name(p);
name.replace( '\\', '/' );
name.make_lower();
return name;
}
private:
path Path;
path InternalName;
};
} // io
} // irr
#endif // __IRR_PATH_H_INCLUDED__
|