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 class SBReproducer 11 { 12 public: 13 static const char *Capture(const char *path); 14 static const char *PassiveReplay(const char *path); 15 static bool SetAutoGenerate(bool b); 16 static void SetWorkingDirectory(const char *path); 17 }; 18 } 19