PixelLightAPI
.
|
This class contains information about how to access a file. More...
#include <FileAccess.h>
Classes | |
class | Entry |
Contains access information for a certain file/URL. More... | |
Public Member Functions | |
PLCORE_API | FileAccess () |
Constructor. | |
PLCORE_API | FileAccess (const FileAccess &cFileAccess) |
Copy constructor. | |
PLCORE_API | ~FileAccess () |
Destructor. | |
PLCORE_API FileAccess & | operator= (const FileAccess &cFileAccess) |
Assignment operator. | |
PLCORE_API bool | HasEntry (const String &sName) const |
Check if an entry with a given name is available. | |
PLCORE_API const Entry & | GetEntry (const String &sName) const |
Returns an entry with a given name. | |
PLCORE_API const Entry & | operator[] (const String &sName) const |
PLCORE_API Entry & | GetEntry (const String &sName) |
Returns an entry with a given name. | |
PLCORE_API Entry & | operator[] (const String &sName) |
Static Public Attributes | |
static const Entry | NullEntry |
This class contains information about how to access a file.
PLCORE_API PLCore::FileAccess::FileAccess | ( | ) |
PLCORE_API PLCore::FileAccess::FileAccess | ( | const FileAccess & | cFileAccess | ) |
Copy constructor.
[in] | cFileAccess | FileAccess object to copy |
PLCORE_API PLCore::FileAccess::~FileAccess | ( | ) |
Destructor.
PLCORE_API FileAccess& PLCore::FileAccess::operator= | ( | const FileAccess & | cFileAccess | ) |
Assignment operator.
[in] | cFileAccess | 'FileAccess' object to copy |
PLCORE_API bool PLCore::FileAccess::HasEntry | ( | const String & | sName | ) | const |
Check if an entry with a given name is available.
[in] | sName | Name of the entry |
PLCORE_API const Entry& PLCore::FileAccess::GetEntry | ( | const String & | sName | ) | const |
Returns an entry with a given name.
[in] | sName | Name of the entry |
PLCORE_API Entry& PLCore::FileAccess::GetEntry | ( | const String & | sName | ) |
Returns an entry with a given name.
[in] | sName | Name of the entry |
const Entry PLCore::FileAccess::NullEntry [static] |
Empty entry
|