Files
revng-revng/include/revng/Yield/HTML.h
T
2022-06-14 18:55:59 +03:00

30 lines
603 B
C++

#pragma once
//
// This file is distributed under the MIT License. See LICENSE.md for details.
//
#include <string>
class MetaAddress;
namespace model {
class Binary;
}
namespace yield {
class Function;
}
namespace yield {
namespace html {
std::string functionAssembly(const yield::Function &InternalFunction,
const model::Binary &Binary);
std::string controlFlowNode(const MetaAddress &BasicBlockAddress,
const yield::Function &Function,
const model::Binary &Binary);
} // namespace html
} // namespace yield