summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Debugger/BreakpointView.h
blob: a7d37bb5bb16133f0bbbb74a5f83313529335637 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2008 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.

#pragma once

#include <wx/listctrl.h>

class CBreakPointView : public wxListCtrl
{
public:
  CBreakPointView(wxWindow* parent, const wxWindowID id);

  void Update() override;
  void DeleteCurrentSelection();
};