summaryrefslogtreecommitdiffstats
path: root/lldb/include/lldb/API/SBStringList.h
blob: 2d1300fe183aeb614adde5af0d0ed5b139b656b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
//===-- SBStringList.h ------------------------------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#ifndef LLDB_SBStringList_h_
#define LLDB_SBStringList_h_


#include <LLDB/SBDefines.h>

namespace lldb {

class SBStringList
{
public:

    SBStringList ();

    SBStringList (const lldb_private::StringList  *lldb_strings);

    SBStringList (const lldb::SBStringList  &rhs);

    ~SBStringList ();

    bool
    IsValid() const;

    void
    AppendString (const char *str);

    void
    AppendList (const char **strv, int strc);

    void
    AppendList (lldb::SBStringList strings);

    uint32_t
    GetSize () const;

    const char *
    GetStringAtIndex (size_t idx);

    void
    Clear ();

#ifndef SWIG

    const lldb_private::StringList *
    operator->() const;

    const lldb_private::StringList &
    operator*() const;

    const lldb::SBStringList &
    operator = (const lldb::SBStringList &rhs);

#endif

private:

    std::auto_ptr<lldb_private::StringList> m_lldb_object_ap;

};

} // namespace lldb

#endif // LLDB_SBStringList_h_
OpenPOWER on IntegriCloud