Files
Giacomo Vercesi 2a239ddf47 Introduce PipelineDescription
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.
2023-09-14 15:44:33 +02:00

38 lines
826 B
C++

#pragma once
//
// This file is distributed under the MIT License. See LICENSE.md for details.
//
/* TUPLE-TREE-YAML
name: Analysis
doc: Data structure representing an analysis
type: struct
fields:
- name: Name
doc: Analysis' name
type: string
- name: ContainerInputs
doc: Analysis' container inputs
sequence:
type: SortedVector
elementType: AnalysisContainerInput
- name: Options
doc: Analysis' options
sequence:
type: SortedVector
elementType: AnalysisOption
key:
- Name
TUPLE-TREE-YAML */
#include "revng/Pipeline/Description/Generated/Early/Analysis.h"
class pipeline::description::Analysis
: public pipeline::description::generated::Analysis {
public:
using generated::Analysis::Analysis;
};
#include "revng/Pipeline/Description/Generated/Late/Analysis.h"