mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-12-19 01:21:53 +01:00
13 lines
339 B
C++
13 lines
339 B
C++
|
#include "StorageItemRoot.h"
|
||
|
|
||
|
StorageItemRoot::StorageItemRoot(const std::string_view plugin_name) : StorageSubItem(plugin_name), mPluginName(plugin_name) {
|
||
|
}
|
||
|
|
||
|
[[nodiscard]] const std::string &StorageItemRoot::getPluginId() const {
|
||
|
return mPluginName;
|
||
|
}
|
||
|
|
||
|
void StorageItemRoot::wipe() {
|
||
|
mSubCategories.clear();
|
||
|
mItems.clear();
|
||
|
}
|