mirror of
https://github.com/isledecomp/SIEdit.git
synced 2025-03-21 10:19:59 -04:00
27 lines
344 B
C
27 lines
344 B
C
|
#ifndef INTERLEAF_H
|
||
|
#define INTERLEAF_H
|
||
|
|
||
|
#include "chunk.h"
|
||
|
#include "core.h"
|
||
|
#include "stream.h"
|
||
|
|
||
|
namespace si {
|
||
|
|
||
|
class Interleaf : public Core
|
||
|
{
|
||
|
public:
|
||
|
LIBWEAVER_EXPORT Interleaf();
|
||
|
|
||
|
LIBWEAVER_EXPORT bool Parse(Chunk *riff);
|
||
|
|
||
|
private:
|
||
|
uint32_t version_;
|
||
|
uint32_t buffer_size_;
|
||
|
uint32_t buffer_count_;
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // INTERLEAF_H
|