mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
27 lines
598 B
C++
27 lines
598 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"
|
|
|
|
#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"
|