7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-21 22:03:47 +00:00

Cleanup a header that should be killed eventually

This commit is contained in:
Marek Roszko 2024-12-28 18:59:54 -05:00
parent d8d84f300f
commit 9208c2e6e6

View File

@ -1,7 +1,3 @@
/**
* @file invoke_pcb_dialog.h
*/
/* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2013 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
@ -38,30 +34,11 @@
// The actual InvokeDialog<class>() function is usually coded at the bottom of the
// DIALOG_<class>.cpp file.
#ifndef INVOKE_A_DIALOG_H_
#define INVOKE_A_DIALOG_H_
#pragma once
class wxWindow;
class wxPoint;
class wxSize;
class wxString;
class BOARD;
class FOOTPRINT;
// Often this is not used in the prototypes, since wxFrame is good enough and would
// represent maximum information hiding.
class PCB_BASE_FRAME;
class PCB_EDIT_FRAME;
class FOOTPRINT_EDIT_FRAME;
class FP_LIB_TABLE;
class BOARD;
class PCB_PLOT_PARAMS;
class KIWAY;
/**
* Function InvokePcbLibTableEditor
* shows the modal DIALOG_FP_LIB_TABLE for purposes of editing the global and project
@ -71,5 +48,3 @@ class KIWAY;
* @return true if either table changed.
*/
void InvokePcbLibTableEditor( KIWAY* aKiway, wxWindow* aCaller );
#endif // INVOKE_A_DIALOG_H_