mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
2a239ddf47
Add the PipelineDescription object that describes the structure of a pipeline. This will be used by all the downstream users instead of pipeline accessor methods via PipelineC.
32 lines
714 B
C++
32 lines
714 B
C++
#pragma once
|
|
|
|
//
|
|
// This file is distributed under the MIT License. See LICENSE.md for details.
|
|
//
|
|
|
|
/* TUPLE-TREE-YAML
|
|
name: AnalysisReference
|
|
doc: A reference to an analysis
|
|
type: struct
|
|
fields:
|
|
- name: Step
|
|
doc: The step where the analysis belongs to
|
|
type: string
|
|
- name: Name
|
|
doc: The name of the analysis
|
|
type: string
|
|
key:
|
|
- Step
|
|
- Name
|
|
TUPLE-TREE-YAML */
|
|
|
|
#include "revng/Pipeline/Description/Generated/Early/AnalysisReference.h"
|
|
|
|
class pipeline::description::AnalysisReference
|
|
: public pipeline::description::generated::AnalysisReference {
|
|
public:
|
|
using generated::AnalysisReference::AnalysisReference;
|
|
};
|
|
|
|
#include "revng/Pipeline/Description/Generated/Late/AnalysisReference.h"
|