Files
llvm-project/lldb/scripts/interface/SBThreadCollection.i
T

40 lines
825 B
OpenEdge ABL
Raw Normal View History

2014-09-06 01:21:19 +00:00
//===-- SWIG Interface for SBThreadCollection -------------------*- 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
2014-09-06 01:21:19 +00:00
//
//===----------------------------------------------------------------------===//
#include <stdio.h>
namespace lldb {
%feature("docstring",
"Represents a collection of SBThread objects."
) SBThreadCollection;
class SBThreadCollection
{
public:
2019-04-18 16:23:33 +00:00
2014-09-06 01:21:19 +00:00
SBThreadCollection ();
2019-04-18 16:23:33 +00:00
2014-09-06 01:21:19 +00:00
SBThreadCollection (const SBThreadCollection &rhs);
2019-04-18 16:23:33 +00:00
2014-09-06 01:21:19 +00:00
~SBThreadCollection ();
2019-04-18 16:23:33 +00:00
2014-09-06 01:21:19 +00:00
bool
IsValid () const;
2019-03-11 13:58:46 +00:00
explicit operator bool() const;
2019-04-18 16:23:33 +00:00
2014-09-06 01:21:19 +00:00
size_t
GetSize ();
2019-04-18 16:23:33 +00:00
2014-09-06 01:21:19 +00:00
lldb::SBThread
GetThreadAtIndex (size_t idx);
2019-04-18 16:23:33 +00:00
2014-09-06 01:21:19 +00:00
};
2019-04-18 16:23:33 +00:00
2014-09-06 01:21:19 +00:00
} // namespace lldb