Files
revng-revng/include/revng/Model/StructField.h
2025-04-17 11:19:17 +03:00

51 lines
1018 B
C++

#pragma once
//
// This file is distributed under the MIT License. See LICENSE.md for details.
//
#include "revng/ADT/RecursiveCoroutine.h"
#include "revng/Model/Type.h"
/* TUPLE-TREE-YAML
name: StructField
doc: |-
A field of a `StructDefinition`.
It is composed by the offset of the field and its type.
type: struct
fields:
- name: Offset
type: uint64_t
- name: Name
type: string
optional: true
- name: Comment
type: string
optional: true
- name: Type
type: Type
doc: The type of the field.
upcastable: true
key:
- Offset
TUPLE-TREE-YAML */
#include "revng/Model/Generated/Early/StructField.h"
namespace model {
class VerifyHelper;
}
class model::StructField : public model::generated::StructField {
public:
using generated::StructField::StructField;
public:
bool verify() const debug_function;
bool verify(bool Assert) const debug_function;
RecursiveCoroutine<bool> verify(VerifyHelper &VH) const;
};
#include "revng/Model/Generated/Late/StructField.h"