Electric potential search: folio report are take into account

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@2689 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
blacksun
2013-12-31 17:01:14 +00:00
parent 5ad42fb491
commit cd9e78a49f
5 changed files with 41 additions and 0 deletions

View File

@@ -91,6 +91,7 @@ class Element : public QetGraphicsItem {
virtual void linkToElement(Element *) {}
virtual void unLinkAllElements() {}
void initLink(QETProject *);
QList<Element *> linkedElements () const;
/**
Draw this element
@@ -187,4 +188,8 @@ inline QUuid Element::uuid() const {
return uuid_;
}
inline QList <Element *> Element::linkedElements() const {
return connected_elements;
}
#endif