[Mammoth] Move most classes to the mmth namespace.

This commit is contained in:
Drew Galbraith 2023-11-22 14:59:41 -08:00
parent 5f8d577948
commit 8d730c67c1
42 changed files with 130 additions and 60 deletions

View file

@ -15,7 +15,7 @@ struct PsfHeader {
class Psf {
public:
Psf(OwnedMemoryRegion&& psf_file);
Psf(mmth::OwnedMemoryRegion&& psf_file);
void DumpHeader();
@ -29,7 +29,7 @@ class Psf {
}
private:
OwnedMemoryRegion psf_file_;
mmth::OwnedMemoryRegion psf_file_;
PsfHeader* header_;
void EnsureValid();