mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
12 lines
207 B
C++
12 lines
207 B
C++
#pragma once
|
|
|
|
struct IFileReader;
|
|
struct ArchiveItemList;
|
|
|
|
class IArchiveParser
|
|
{
|
|
public:
|
|
virtual bool Check(IFileReader &reader) = 0;
|
|
virtual ArchiveItemList *Parse(IFileReader &reader) = 0;
|
|
};
|