mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-12-18 17:11:54 +01:00
17 lines
296 B
C++
17 lines
296 B
C++
#pragma once
|
|
|
|
#include "StorageSubItem.h"
|
|
#include <string>
|
|
|
|
class StorageItemRoot : public StorageSubItem {
|
|
public:
|
|
explicit StorageItemRoot(std::string_view plugin_name);
|
|
|
|
[[nodiscard]] const std::string &getPluginId() const;
|
|
|
|
void wipe();
|
|
|
|
private:
|
|
std::string mPluginName;
|
|
};
|