Even more formatting

This commit is contained in:
Maschell
2020-05-03 12:30:15 +02:00
parent 59f361f7de
commit 8dd161b177
41 changed files with 1036 additions and 984 deletions

View File

@@ -54,27 +54,27 @@ private:
PluginMetaInformation() {
}
void setName(const std::string& name) {
void setName(const std::string &name) {
this->name = name;
}
void setAuthor(const std::string& author) {
void setAuthor(const std::string &author) {
this->author = author;
}
void setVersion(const std::string& version) {
void setVersion(const std::string &version) {
this->version = version;
}
void setLicense(const std::string& license) {
void setLicense(const std::string &license) {
this->license = license;
}
void setBuildTimestamp(const std::string& buildtimestamp) {
void setBuildTimestamp(const std::string &buildtimestamp) {
this->buildtimestamp = buildtimestamp;
}
void setDescription(const std::string& description) {
void setDescription(const std::string &description) {
this->description = description;
}
@@ -91,6 +91,8 @@ private:
size_t size;
friend class PluginMetaInformationFactory;
friend class PluginContainerPersistence;
friend class PluginContainer;
};