2014-07-12 21:59:58 -04:00
|
|
|
#pragma once
|
2006-06-15 04:19:30 +00:00
|
|
|
|
2008-03-17 19:20:37 +00:00
|
|
|
#include <string>
|
2006-06-15 04:19:30 +00:00
|
|
|
#include "Types.h"
|
|
|
|
#include "Stream.h"
|
|
|
|
|
|
|
|
namespace ISO9660
|
|
|
|
{
|
2014-07-12 21:59:58 -04:00
|
|
|
class CPathTableRecord
|
|
|
|
{
|
|
|
|
public:
|
2018-04-30 21:01:23 +01:00
|
|
|
CPathTableRecord(Framework::CStream&);
|
|
|
|
~CPathTableRecord();
|
2006-06-15 04:19:30 +00:00
|
|
|
|
2018-04-30 21:01:23 +01:00
|
|
|
uint8 GetNameLength() const;
|
|
|
|
uint32 GetAddress() const;
|
|
|
|
uint32 GetParentRecord() const;
|
|
|
|
const char* GetName() const;
|
2006-06-15 04:19:30 +00:00
|
|
|
|
2014-07-12 21:59:58 -04:00
|
|
|
private:
|
2018-04-30 21:01:23 +01:00
|
|
|
uint8 m_nameLength = 0;
|
|
|
|
uint8 m_exLength = 0;
|
|
|
|
uint32 m_location = 0;
|
|
|
|
uint16 m_parentDir = 0;
|
|
|
|
std::string m_directory;
|
2014-07-12 21:59:58 -04:00
|
|
|
};
|
2006-06-15 04:19:30 +00:00
|
|
|
}
|