1STRING_EXTENSION_OUTSIDE(SBBreakpointName)
2
3%extend lldb::SBBreakpointName {
4#ifdef SWIGPYTHON
5    %pythoncode%{
6    # operator== is a free function, which swig does not handle, so we inject
7    # our own equality operator here
8    def __eq__(self, other):
9      return not self.__ne__(other)
10    %}
11#endif
12}
13