mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2026-08-23 11:24:34 -05:00
Clean up and formatting
This commit is contained in:
@@ -18,24 +18,23 @@
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include "utils/logger.h"
|
||||
#include "../utils/logger.h"
|
||||
|
||||
class ImportRPLInformation {
|
||||
|
||||
public:
|
||||
ImportRPLInformation(std::string name, bool isData = false) {
|
||||
explicit ImportRPLInformation(std::string name, bool isData = false) {
|
||||
this->name = name;
|
||||
this->_isData = isData;
|
||||
}
|
||||
|
||||
~ImportRPLInformation() {
|
||||
}
|
||||
~ImportRPLInformation() = default;
|
||||
|
||||
std::string getName() const {
|
||||
[[nodiscard]] std::string getName() const {
|
||||
return name;
|
||||
}
|
||||
|
||||
bool isData() const {
|
||||
[[nodiscard]] bool isData() const {
|
||||
return _isData;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user