This commit is contained in:
Jean-Manuel Caba 2010-08-23 13:21:30 +00:00
parent ab4a8e4346
commit d53d1f53b0
1 changed files with 3 additions and 2 deletions

View File

@ -11,13 +11,14 @@ namespace CRL {
OADriver::OADriver(Cell* cell) : _cell(cell) {}
void OADriver::save(const std::string& filePath) {
//CRL::OpenAccess::oaDriver(filePath, _cell);
CRL::OpenAccess::oaDriver(filePath, _cell);
}
OAParser::OAParser(const std::string& cellLibPath,const std::string& cellLibName,
const std::string& techLibPath,const std::string& techLibName)
: _cellLibPath(cellLibPath), _cellLibName(cellLibName),
_techLibPath(techLibPath), _techLibName(techLibName) {}
_techLibPath(techLibPath), _techLibName(techLibName) {
}
Cell* OAParser::open(const std::string& cellName) {
return CRL::OpenAccess::oaCellParser(_cellLibPath, _cellLibName, cellName,