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