##// END OF EJS Templates
Netlist parsing and loading ok, get in memory abstract syntax tree and concrete...
Netlist parsing and loading ok, get in memory abstract syntax tree and concrete tree mapping. Next step -> PCB file parsing and loading.

File last commit:

r1:0db2be5e5c43 default
r2:096591f9de09 default
Show More
qicadnet.cpp
38 lines | 1.4 KiB | text/x-c | CppLexer
Sync
r1 /*------------------------------------------------------------------------------
-- This file is a part of the Kicad Tools Software
-- Copyright (C) 2014, Plasma Physics Laboratory - CNRS
--
-- 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, write to the Free Software
-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-------------------------------------------------------------------------------*/
/*-- Author : Alexis Jeandet
-- Mail : alexis.jeandet@member.fsf.org
----------------------------------------------------------------------------*/
First Init, kicad lisp-like files abstract parser done.
r0 #include "qicadnet.h"
QIlib::QIcadNet::QIcadNet()
{
}
QIlib::QIcadNet::~QIcadNet()
{
}
QIlib::QIcadNetNode::QIcadNetNode(QString ref, QString node)
{
this->p_ref = ref;
this->p_node = node;
}