2013-04-18 03:43:35 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// 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-22 22:36:30 +00:00
|
|
|
#include <wx/windowid.h>
|
2014-02-17 10:18:15 +00:00
|
|
|
|
2014-02-22 22:36:30 +00:00
|
|
|
class wxWindow;
|
2008-12-08 04:46:09 +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
|
|
|
};
|