Base: Fix header uniformity, whitespace, and doxygen

[skip ci]
This commit is contained in:
luz paz
2020-11-22 12:00:16 -05:00
committed by wwmayer
parent 810a8dc643
commit 01b21e0d06
77 changed files with 511 additions and 433 deletions

View File

@@ -37,7 +37,7 @@ using namespace Base;
using namespace std;
struct Base::TypeData
struct Base::TypeData
{
TypeData(const char *theName,
const Type type = Type::badType(),
@@ -176,7 +176,7 @@ void Type::destruct(void)
Type Type::fromName(const char *name)
{
std::map<std::string,unsigned int>::const_iterator pos;
pos = typemap.find(name);
if (pos != typemap.end())
return typedata[pos->second]->type;
@@ -204,7 +204,7 @@ const Type Type::getParent(void) const
bool Type::isDerivedFrom(const Type type) const
{
Type temp(*this);
do {
if (temp == type)