dolphin/Source/Core/DolphinWX/Debugger/BreakpointView.h
Lioncash 88f7536d81 DolphinWX: Remove unnecessary forward declarations
These are all fully defined
2015-04-28 17:32:38 -04:00

18 lines
346 B
C++

// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
#pragma once
#include <wx/listctrl.h>
#include <wx/windowid.h>
class CBreakPointView : public wxListCtrl
{
public:
CBreakPointView(wxWindow* parent, const wxWindowID id);
void Update() override;
void DeleteCurrentSelection();
};