mirror of
https://github.com/wiiu-env/wudd.git
synced 2024-11-18 07:59:15 +01:00
17 lines
466 B
C++
17 lines
466 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <WUD/entities/FST/nodeentry/NodeEntry.h>
|
|
#include <WUD/entities/FST/nodeentry/DirectoryEntry.h>
|
|
#include <WUD/entities/FST/FST.h>
|
|
|
|
class FSTUtils {
|
|
public:
|
|
static NodeEntry *getFSTEntryByFullPath(DirectoryEntry *root, std::string &givenFullPath);
|
|
|
|
static DirectoryEntry *getFileEntryDir(DirectoryEntry *curEntry, std::string &string);
|
|
|
|
static SectionEntry *getSectionEntryForIndex(FST *pFst, uint16_t index);
|
|
};
|
|
|