mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
6d1fbdca97
Add the needed infrastructures that allow ephemeral classes (`PipeRun`s) to be wrapped as a regular pypeline `Pipe` class. These automatically have their dependencies tracked and propagated to the pypeline.
18 lines
449 B
C++
18 lines
449 B
C++
//
|
|
// This file is distributed under the MIT License. See LICENSE.md for details.
|
|
//
|
|
|
|
#include "revng/PipeboxCommon/Helpers/Registrars.h"
|
|
#include "revng/PipeboxCommon/RawContainer.h"
|
|
|
|
using namespace revng::pypeline;
|
|
|
|
//
|
|
// Containers
|
|
//
|
|
|
|
static RegisterContainer<BytesContainer> C1;
|
|
static RegisterContainer<FunctionToBytesContainer> C2;
|
|
static RegisterContainer<TypeDefinitionToBytesContainer> C3;
|
|
static RegisterContainer<LLVMRootContainer> C4;
|