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
|
|
|
|
|
|
|
#ifndef __BREAKPOINTVIEW_h__
|
|
|
|
#define __BREAKPOINTVIEW_h__
|
|
|
|
|
|
|
|
#include <wx/listctrl.h>
|
|
|
|
#include "Common.h"
|
|
|
|
|
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
|
|
|
|
2011-02-25 23:15:53 +00:00
|
|
|
void Update();
|
|
|
|
void DeleteCurrentSelection();
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|