mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
16 lines
308 B
C++
16 lines
308 B
C++
#pragma once
|
|
|
|
#include "IArchiveParser.h"
|
|
|
|
#include <stdint.h>
|
|
|
|
class CompactProParser : public IArchiveParser
|
|
{
|
|
public:
|
|
bool Check(IFileReader &reader) override;
|
|
ArchiveItemList *Parse(IFileReader &reader) override;
|
|
|
|
private:
|
|
ArchiveItemList *ParseDirectory(uint32_t numEntries, IFileReader &reader);
|
|
};
|