2020-04-14 23:41:50 +08:00
|
|
|
//===-- SWIG Interface for SBReproducer--------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
namespace lldb {
|
2021-01-16 02:49:51 +08:00
|
|
|
|
|
|
|
%feature("docstring",
|
|
|
|
"Controls LLDB's reproducer functionality."
|
|
|
|
) SBReproducer;
|
2020-04-14 23:41:50 +08:00
|
|
|
class SBReproducer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static const char *Capture(const char *path);
|
|
|
|
static const char *PassiveReplay(const char *path);
|
|
|
|
static bool SetAutoGenerate(bool b);
|
2020-05-13 23:54:57 +08:00
|
|
|
static void SetWorkingDirectory(const char *path);
|
2020-04-14 23:41:50 +08:00
|
|
|
};
|
|
|
|
}
|