mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
688b9fe111
Add the necessary machinery to allow `Pipe`s, `Analysis`es, `Container`s, `Model` and `ObjectID` to be implemented in C++ and used by Python.
12 lines
301 B
C++
12 lines
301 B
C++
//
|
|
// This file is distributed under the MIT License. See LICENSE.md for details.
|
|
//
|
|
|
|
#include "revng/PipeboxCommon/Helpers/Registrars.h"
|
|
|
|
#include "MockPipeboxImpl.h"
|
|
|
|
static RegisterContainer<StringContainer> X;
|
|
static RegisterPipe<AppendFooPipe> Y;
|
|
static RegisterAnalysis<AppendFooLibAnalysis> Z;
|