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