App: Modernise ctors dtors defs etc

This commit is contained in:
berniev
2022-08-01 03:07:32 +10:00
committed by wwmayer
parent 5d4b753940
commit b6cae3bfdf
80 changed files with 866 additions and 1160 deletions

View File

@@ -45,11 +45,11 @@ public:
: Base::XMLReader(FileName, str), nameMap(name)
{}
void addName(const char* s1, const char* s2)
void addName(const char* s1, const char* s2) override
{
nameMap[s1] = s2;
}
const char* getName(const char* name) const
const char* getName(const char* name) const override
{
std::map<std::string, std::string>::const_iterator it = nameMap.find(name);
if (it != nameMap.end())
@@ -57,7 +57,7 @@ public:
else
return name;
}
bool doNameMapping() const
bool doNameMapping() const override
{
return true;
}