1 //===-- SWIG Interface for SBReproducer--------------------------*- C++ -*-===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 namespace lldb { 10 11 %feature("docstring", 12 "Controls LLDB's reproducer functionality." 13 ) SBReproducer; 14 class SBReproducer 15 { 16 public: 17 static const char *Capture(const char *path); 18 static const char *PassiveReplay(const char *path); 19 static bool SetAutoGenerate(bool b); 20 static void SetWorkingDirectory(const char *path); 21 }; 22 } 23