blob: 824f6923acce9affa8f41d6217fe607c4ab8f610 [file] [log] [blame]
Kuba Breckaa5ea1e22014-09-06 01:21:19 +00001//===-- SWIG Interface for SBThreadCollection -------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include <stdio.h>
11
12namespace lldb {
13
14%feature("docstring",
15"Represents a collection of SBThread objects."
16) SBThreadCollection;
17class SBThreadCollection
18{
19public:
20
21 SBThreadCollection ();
22
23 SBThreadCollection (const SBThreadCollection &rhs);
24
25 ~SBThreadCollection ();
26
27 bool
28 IsValid () const;
29
30 size_t
31 GetSize ();
32
33 lldb::SBThread
34 GetThreadAtIndex (size_t idx);
35
36};
37
38} // namespace lldb