mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
27 lines
490 B
C++
27 lines
490 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include "Types.h"
|
|
#include "Stream.h"
|
|
|
|
namespace ISO9660
|
|
{
|
|
class CPathTableRecord
|
|
{
|
|
public:
|
|
CPathTableRecord(Framework::CStream&);
|
|
~CPathTableRecord();
|
|
|
|
uint8 GetNameLength() const;
|
|
uint32 GetAddress() const;
|
|
uint32 GetParentRecord() const;
|
|
const char* GetName() const;
|
|
|
|
private:
|
|
uint8 m_nameLength = 0;
|
|
uint8 m_exLength = 0;
|
|
uint32 m_location = 0;
|
|
uint16 m_parentDir = 0;
|
|
std::string m_directory;
|
|
};
|
|
}
|