Files
dolphin/Source/Core/DolphinWX/Debugger/BreakpointView.h
T

17 lines
325 B
C++
Raw Normal View History

// Copyright 2008 Dolphin Emulator Project
2015-05-18 01:08:10 +02:00
// Licensed under GPLv2+
// Refer to the license.txt file included.
2008-12-08 04:46:09 +00:00
#pragma once
2008-12-08 04:46:09 +00:00
#include <wx/listctrl.h>
2014-02-17 05:18:15 -05:00
class CBreakPointView : public wxListCtrl
2008-12-08 04:46:09 +00:00
{
public:
CBreakPointView(wxWindow* parent, const wxWindowID id);
2008-12-08 04:46:09 +00:00
void Update() override;
void DeleteCurrentSelection();
2008-12-08 04:46:09 +00:00
};