filepath: Added clear and isEmpty methods.

This commit is contained in:
Branimir Karadžić
2018-01-04 13:03:41 -08:00
parent fddf8c3303
commit ae8fd89b62
2 changed files with 19 additions and 0 deletions

View File

@@ -56,6 +56,9 @@ namespace bx
///
FilePath& operator=(const StringView& _rhs);
///
void clear();
///
void set(Dir::Enum _dir);
@@ -87,6 +90,9 @@ namespace bx
///
bool isAbsolute() const;
///
bool isEmpty() const;
private:
char m_filePath[kMaxFilePath];
};