72 lines
2.2 KiB
C++
72 lines
2.2 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright (C) 2007-2016 Dick Hollenbeck, dick@softplc.com
|
|
* Copyright (C) 2017-2019 KiCad Developers, see change_log.txt for contributors.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, you may find one here:
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#ifndef DRC_H
|
|
#define DRC_H
|
|
|
|
#include <board_commit.h>
|
|
#include <class_board.h>
|
|
#include <class_track.h>
|
|
#include <class_marker_pcb.h>
|
|
#include <geometry/seg.h>
|
|
#include <geometry/shape_poly_set.h>
|
|
#include <memory>
|
|
#include <vector>
|
|
#include <tools/pcb_tool_base.h>
|
|
|
|
|
|
class PCB_EDIT_FRAME;
|
|
|
|
|
|
/**
|
|
* Design Rule Checker object that performs all the DRC tests. The output of
|
|
* the checking goes to the BOARD file in the form of two MARKER lists. Those
|
|
* two lists are displayable in the drc dialog box. And they can optionally
|
|
* be sent to a text file on disk.
|
|
* This class is given access to the windows and the BOARD
|
|
* that it needs via its constructor or public access functions.
|
|
*/
|
|
class DRC : public PCB_TOOL_BASE
|
|
{
|
|
public:
|
|
DRC();
|
|
~DRC();
|
|
|
|
/// @copydoc TOOL_INTERACTIVE::Reset()
|
|
void Reset( RESET_REASON aReason ) override;
|
|
|
|
private:
|
|
PCB_EDIT_FRAME* m_editFrame; // The pcb frame editor which owns the board
|
|
|
|
std::vector<DRC_RULE*> m_rules;
|
|
public:
|
|
/**
|
|
* Load the DRC rules. Must be called after the netclasses have been read.
|
|
*/
|
|
bool LoadRules();
|
|
};
|
|
|
|
|
|
#endif // DRC_H
|