Files
revng-revng/lib/Pipebox/Pipebox.cpp
T
Giacomo Vercesi 6d1fbdca97 Implement infrastructure for PipeRuns
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.
2025-10-03 17:40:45 +02:00

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;