mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 21:02:50 +00:00
c3f8e5bcc5
This allows having sections in a spec used for things like `properties` that have no corresponding fields in the actual struct: the field is ignored when parsing and no cexpr field symbol is emitted.
14 lines
250 B
Objective-C
14 lines
250 B
Objective-C
#ifndef __renderer_vulkan_vkgen_vkfieldignore_h
|
|
#define __renderer_vulkan_vkgen_vkfieldignore_h
|
|
|
|
#include "vkfielddef.h"
|
|
|
|
@class FieldType;
|
|
|
|
@interface IgnoreField: FieldDef
|
|
{
|
|
FieldType *type;
|
|
}
|
|
@end
|
|
|
|
#endif//__renderer_vulkan_vkgen_vkfieldignore_h
|