mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-19 01:35:14 +00:00
29 lines
571 B
C++
29 lines
571 B
C++
#pragma once
|
|
|
|
#include <basis/seadTypes.h>
|
|
#include <container/seadTList.h>
|
|
|
|
namespace sead {
|
|
class WriteStream;
|
|
}
|
|
|
|
namespace al {
|
|
|
|
class ByamlWriterStringTable {
|
|
public:
|
|
ByamlWriterStringTable();
|
|
virtual ~ByamlWriterStringTable();
|
|
const char* tryAdd(const char*);
|
|
u32 calcHeaderSize() const;
|
|
u32 calcContentSize() const;
|
|
u32 calcPackSize() const;
|
|
bool isEmpty() const;
|
|
u32 calcIndex(const char*) const;
|
|
void write(sead::WriteStream*) const;
|
|
void print() const;
|
|
|
|
private:
|
|
sead::TList<const char*> mList;
|
|
};
|
|
|
|
} // namespace al
|