Files
revng-revng/lib/ImportModelFromC/ImportModelFromCAnalysis.h
T
Djordje Todorovic 5c0167f792 Add ImportModelFromC Analysis
This analysis will be used for the following features:

1) Edit Type in the Model
2) Edit Function Prototype in the Model
3) Add Type to the Model

It takes C code as an input, parses it and produces a Model
type that represents the C type.
2023-07-24 11:51:47 +02:00

13 lines
195 B
C

#pragma once
//
// Copyright (c) rev.ng Labs Srl. See LICENSE.md for details.
//
namespace {
enum class ImportModelFromCOption {
EditType,
EditFunctionPrototype,
AddType
};
} // namespace