aboutsummaryrefslogtreecommitdiff
path: root/lldb/bindings/interface/SBReproducer.i
blob: 7c9b007db3c061d65fb7f1934d335d154f19f98f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//===-- 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 {
class SBReproducer
{
    public:
        static const char *Capture(const char *path);
        static const char *PassiveReplay(const char *path);
        static bool SetAutoGenerate(bool b);
        static void SetWorkingDirectory(const char *path);
};
}