mirror of
https://github.com/The-OpenROAD-Project/OpenROAD.git
synced 2026-06-02 01:08:34 +08:00
18 lines
378 B
C++
18 lines
378 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// Copyright (c) 2019-2025, The OpenROAD Authors
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "tcl.h"
|
|
|
|
namespace ord {
|
|
|
|
// Call this inside of Tcl_Main.
|
|
void initOpenRoad(Tcl_Interp* interp,
|
|
const char* log_filename,
|
|
const char* metrics_filename,
|
|
bool batch_mode);
|
|
} // namespace ord
|