mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-09-02 23:17:26 +00:00
29 lines
564 B
C++
29 lines
564 B
C++
#include "ForwardDeclaration.h"
|
|
|
|
ForwardDeclaration::ForwardDeclaration(std::string _namespace, std::string name, DataDefinitionType type)
|
|
: DataDefinition(std::move(_namespace), std::move(name)),
|
|
m_forwarded_type(type),
|
|
m_definition(nullptr)
|
|
{
|
|
}
|
|
|
|
DataDefinitionType ForwardDeclaration::GetType() const
|
|
{
|
|
return DataDefinitionType::FORWARD_DECLARATION;
|
|
}
|
|
|
|
unsigned ForwardDeclaration::GetAlignment()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
bool ForwardDeclaration::GetForceAlignment()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
unsigned ForwardDeclaration::GetSize()
|
|
{
|
|
return 0;
|
|
}
|