Rename GDT to Gdt to keep naming schema

This commit is contained in:
Jan
2021-03-06 00:57:09 -08:00
parent 82a08d0850
commit defc388210
4 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,19 @@
#include "GdtEntry.h"
GdtEntry::GdtEntry()
: m_parent(nullptr)
{
}
GdtEntry::GdtEntry(std::string name, std::string gdfName)
: m_name(std::move(name)),
m_gdf_name(std::move(gdfName)),
m_parent(nullptr)
{
}
GdtEntry::GdtEntry(std::string name, GdtEntry* parent)
: m_name(std::move(name)),
m_parent(parent)
{
}