2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:43:35 +00:00
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
#include <wx/listctrl.h>
|
2014-02-17 10:18:15 +00:00
|
|
|
|
2011-02-25 23:15:53 +00:00
|
|
|
class CBreakPointView : public wxListCtrl
|
2009-09-27 21:28:09 +00:00
|
|
|
{
|
2011-02-25 23:15:53 +00:00
|
|
|
public:
|
2011-02-27 23:03:08 +00:00
|
|
|
CBreakPointView(wxWindow* parent, const wxWindowID id);
|
2009-09-27 21:28:09 +00:00
|
|
|
|
2014-03-08 00:54:44 +00:00
|
|
|
void Update() override;
|
2011-02-25 23:15:53 +00:00
|
|
|
void DeleteCurrentSelection();
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|