mirror of
https://github.com/The-OpenROAD-Project/OpenSTA.git
synced 2026-09-06 17:21:05 +02:00
Initial Pass at Attribute parsing
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user