Play-/Source/ISO9660/VolumeDescriptor.h

25 lines
412 B
C
Raw Permalink Normal View History

2014-07-12 21:59:58 -04:00
#pragma once
#include "BlockProvider.h"
namespace ISO9660
{
class CVolumeDescriptor
{
public:
2018-04-30 21:01:23 +01:00
CVolumeDescriptor(CBlockProvider*);
~CVolumeDescriptor();
2018-04-30 21:01:23 +01:00
uint32 GetLPathTableAddress() const;
uint32 GetMPathTableAddress() const;
private:
2018-04-30 21:01:23 +01:00
uint8 m_type = 0;
char m_stdId[6];
char m_volumeId[33];
uint32 m_LPathTableAddress = 0;
uint32 m_MPathTableAddress = 0;
};
}