mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
5c0167f792
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.
13 lines
195 B
C
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
|