aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/api/check_public_api_headers/main.cpp.template
diff options
context:
space:
mode:
Diffstat (limited to 'packages/Python/lldbsuite/test/api/check_public_api_headers/main.cpp.template')
-rw-r--r--packages/Python/lldbsuite/test/api/check_public_api_headers/main.cpp.template24
1 files changed, 24 insertions, 0 deletions
diff --git a/packages/Python/lldbsuite/test/api/check_public_api_headers/main.cpp.template b/packages/Python/lldbsuite/test/api/check_public_api_headers/main.cpp.template
new file mode 100644
index 000000000000..ed754add6100
--- /dev/null
+++ b/packages/Python/lldbsuite/test/api/check_public_api_headers/main.cpp.template
@@ -0,0 +1,24 @@
+//===-- main.cpp ------------------------------------------------*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#include <stdio.h>
+%include_SB_APIs%
+
+using namespace lldb;
+int
+main(int argc, char const *argv[])
+{
+ SBDebugger::Initialize();
+ SBDebugger dbg = SBDebugger::Create();
+
+ printf("Hello SBDebugger %llu\n", dbg.GetID()); // Set breakpoint here.
+
+ SBDebugger::Terminate();
+ return 0;
+}