mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 12:52:46 +00:00
7829ec3adb
This makes it possible to use the parser to read in certain fields, but skip over others. The read-only is for cexpr parsing of the read-only fields.
14 lines
258 B
Objective-C
14 lines
258 B
Objective-C
#ifndef __renderer_vulkan_vkgen_vkfieldreadonly_h
|
|
#define __renderer_vulkan_vkgen_vkfieldreadonly_h
|
|
|
|
#include "vkfielddef.h"
|
|
|
|
@class FieldType;
|
|
|
|
@interface ReadOnlyField: FieldDef
|
|
{
|
|
FieldType *type;
|
|
}
|
|
@end
|
|
|
|
#endif//__renderer_vulkan_vkgen_vkfieldreadonly_h
|