##// END OF EJS Templates
Sync
Sync

File last commit:

r3:e85fcd939626 default
r5:c48b43d9c7fb default
Show More
qicadpcb.cpp
39 lines | 665 B | text/x-c | CppLexer
#include "qicadpcb.h"
QIlib::QIcadPcb::QIcadPcb()
{
}
bool QIlib::QIcadPcb::parsePcb(const QString &pcb)
{
parse(pcb.toStdString().c_str());
updateConcreteTree();
return false;
}
QString QIlib::QIcadPcb::toString()
{
}
QString QIlib::QIcadPcb::print()
{
return rootNode.print();
}
void QIlib::QIcadPcb::updateConcreteTree()
{
// if(this->rootNode.nodes.count())
// {
// if(this->rootNode.nodes.at(0)->name==QIlib::Lexique::root_c)
// {
// if(this->netlistRoot==NULL)
// {
// this->netlistRoot = new QIcadNetListRoot(this->rootNode.nodes.at(0));
// }
// }
// }
}