Files
revng-revng/lib/Pipeline/Context.cpp
2022-08-10 09:49:24 +02:00

23 lines
556 B
C++

/// \file Context.cpp
/// \brief The pipeline context the place where all objects used by more that
/// one pipeline or container are stored.
//
// This file is distributed under the MIT License. See LICENSE.md for details.
//
#include <cstdlib>
#include "llvm/ADT/StringRef.h"
#include "revng/Pipeline/AllRegistries.h"
#include "revng/Pipeline/Context.h"
using namespace pipeline;
Logger<> pipeline::ExplanationLogger("pipeline");
Logger<> pipeline::CommandLogger("commands");
Context::Context() : TheKindRegistry(Registry::registerAllKinds()) {
}