mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-12-18 17:11:54 +01:00
24 lines
740 B
C++
24 lines
740 B
C++
#include "SectionInfo.h"
|
|
|
|
SectionInfo::SectionInfo(std::string name,
|
|
const uint32_t address,
|
|
const uint32_t sectionSize) : mName(std::move(name)),
|
|
mAddress(address),
|
|
mSectionSize(sectionSize) {
|
|
}
|
|
|
|
[[nodiscard]] const std::string &SectionInfo::getName() const {
|
|
return mName;
|
|
}
|
|
|
|
[[nodiscard]] uint32_t SectionInfo::getAddress() const {
|
|
return mAddress;
|
|
}
|
|
|
|
[[nodiscard]] uint32_t SectionInfo::getSize() const {
|
|
return mSectionSize;
|
|
}
|
|
|
|
[[nodiscard]] uint32_t SectionInfo::isInSection(uint32_t addr) const {
|
|
return addr >= mAddress && addr < mAddress + mSectionSize;
|
|
} |