mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
29 lines
671 B
C++
29 lines
671 B
C++
#pragma once
|
|
|
|
//
|
|
// This file is distributed under the MIT License. See LICENSE.md for details.
|
|
//
|
|
|
|
#include "revng/ADT/MutableSet.h"
|
|
#include "revng/Model/CommonFunctionMethods.h"
|
|
|
|
#include "revng/Model/Generated/Early/DynamicFunction.h"
|
|
|
|
namespace model {
|
|
class VerifyHelper;
|
|
}
|
|
|
|
class model::DynamicFunction
|
|
: public model::generated::DynamicFunction,
|
|
public model::CommonFunctionMethods<DynamicFunction> {
|
|
public:
|
|
using generated::DynamicFunction::DynamicFunction;
|
|
|
|
public:
|
|
bool verify() const debug_function;
|
|
bool verify(bool Assert) const debug_function;
|
|
bool verify(VerifyHelper &VH) const;
|
|
};
|
|
|
|
#include "revng/Model/Generated/Late/DynamicFunction.h"
|