mirror of
https://github.com/isledecomp/SIEdit.git
synced 2024-11-23 15:48:03 -05:00
26 lines
344 B
C++
26 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
|