Deleted Added
full compact
SBEvent.h (254729) SBEvent.h (280031)
1//===-- SBEvent.h -----------------------------------------------*- 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//===----------------------------------------------------------------------===//

--- 16 unchanged lines hidden (view full) ---

25public:
26 SBEvent();
27
28 SBEvent (const lldb::SBEvent &rhs);
29
30 // Make an event that contains a C string.
31 SBEvent (uint32_t event, const char *cstr, uint32_t cstr_len);
32
1//===-- SBEvent.h -----------------------------------------------*- 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//===----------------------------------------------------------------------===//

--- 16 unchanged lines hidden (view full) ---

25public:
26 SBEvent();
27
28 SBEvent (const lldb::SBEvent &rhs);
29
30 // Make an event that contains a C string.
31 SBEvent (uint32_t event, const char *cstr, uint32_t cstr_len);
32
33 SBEvent (lldb::EventSP &event_sp);
34
35 SBEvent (lldb_private::Event *event_sp);
36
33 ~SBEvent();
34
35 const SBEvent &
36 operator = (const lldb::SBEvent &rhs);
37
38 bool
39 IsValid() const;
40

--- 31 unchanged lines hidden (view full) ---

72 friend class SBListener;
73 friend class SBBroadcaster;
74 friend class SBBreakpoint;
75 friend class SBDebugger;
76 friend class SBProcess;
77 friend class SBThread;
78 friend class SBWatchpoint;
79
37 ~SBEvent();
38
39 const SBEvent &
40 operator = (const lldb::SBEvent &rhs);
41
42 bool
43 IsValid() const;
44

--- 31 unchanged lines hidden (view full) ---

76 friend class SBListener;
77 friend class SBBroadcaster;
78 friend class SBBreakpoint;
79 friend class SBDebugger;
80 friend class SBProcess;
81 friend class SBThread;
82 friend class SBWatchpoint;
83
80 SBEvent (lldb::EventSP &event_sp);
81
82 lldb::EventSP &
83 GetSP () const;
84
85 void
86 reset (lldb::EventSP &event_sp);
87
88 void
89 reset (lldb_private::Event* event);

--- 13 unchanged lines hidden ---
84 lldb::EventSP &
85 GetSP () const;
86
87 void
88 reset (lldb::EventSP &event_sp);
89
90 void
91 reset (lldb_private::Event* event);

--- 13 unchanged lines hidden ---