Go to the source code of this file.
◆ PREDECLARE_GEOMETRY
| #define PREDECLARE_GEOMETRY |
( |
|
TypeName | ) |
namespace UE { namespace Geometry { TypeName; }} |
Predeclare the type TypeName in the UE::Geometry:: namespace
◆ PREDECLARE_USE_GEOMETRY_CLASS
| #define PREDECLARE_USE_GEOMETRY_CLASS |
( |
|
ClassName | ) |
namespace UE { namespace Geometry { class ClassName; }} using UE::Geometry::ClassName; |
Predeclare the class ClassName in the UE::Geometry:: namespace, and then add a using UE::Geometry::ClassName declaration.
◆ PREDECLARE_USE_GEOMETRY_STRUCT
| #define PREDECLARE_USE_GEOMETRY_STRUCT |
( |
|
StructName | ) |
namespace UE { namespace Geometry { struct StructName; }} using UE::Geometry::StructName; |
Predeclare struct class StructName in the UE::Geometry:: namespace, and then add a using UE::Geometry::StructName declaration.
◆ DECLARE_LOG_CATEGORY_EXTERN()