Initial Pass at Attribute parsing

This commit is contained in:
Ethan Mahintorabi
2024-03-09 22:02:19 +00:00
parent 2cfbeb4672
commit 414e4e44aa
16 changed files with 5101 additions and 56 deletions
+12
View File
@@ -122,6 +122,12 @@ NetworkNameAdapter::id(const Cell *cell) const
return network_->id(cell);
}
const char *
NetworkNameAdapter::getAttribute(const Cell *cell, const char *key) const
{
return network_->getAttribute(cell, key);
}
Library *
NetworkNameAdapter::library(const Cell *cell) const
{
@@ -327,6 +333,12 @@ NetworkNameAdapter::cell(const Instance *instance) const
return network_->cell(instance);
}
const char *
NetworkNameAdapter::getAttribute(const Instance *inst, const char *key) const
{
return network_->getAttribute(inst, key);
}
Instance *
NetworkNameAdapter::parent(const Instance *instance) const
{