From eaa8dcfcc9deabb906cc09bf31fc17ab6f343ff4 Mon Sep 17 00:00:00 2001 From: Lauro Oyen <15063951+laurooyen@users.noreply.github.com> Date: Mon, 2 Dec 2024 20:46:43 +0100 Subject: Move c++ parsing code from slang-cpp-extractor to static library (#5675) * Move c++ parsing code from slang-cpp-extractor to static library * Format code * Remove relative includes --------- Co-authored-by: slangbot Co-authored-by: Yong He --- tools/slang-cpp-parser/unit-test.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tools/slang-cpp-parser/unit-test.h (limited to 'tools/slang-cpp-parser/unit-test.h') diff --git a/tools/slang-cpp-parser/unit-test.h b/tools/slang-cpp-parser/unit-test.h new file mode 100644 index 000000000..e8d1b53b2 --- /dev/null +++ b/tools/slang-cpp-parser/unit-test.h @@ -0,0 +1,14 @@ +#pragma once + +#include "diagnostics.h" + +namespace CppParse +{ +using namespace Slang; + +struct UnitTestUtil +{ + static SlangResult run(); +}; + +} // namespace CppParse -- cgit v1.2.3