1010#include " db/obj/frBlockObject.h"
1111#include " db/obj/frNet.h"
1212#include " frBaseTypes.h"
13+ #include " odb/dbTypes.h"
1314#include " odb/geom.h"
1415
1516namespace drt {
@@ -21,10 +22,10 @@ class frTerm : public frBlockObject
2122 virtual frNet* getNet () const = 0;
2223 const frString& getName () const { return name_; }
2324 // setters
24- void setType (const dbSigType& in) { type_ = in; }
25- dbSigType getType () const { return type_; }
26- void setDirection (const dbIoType& in) { direction_ = in; }
27- dbIoType getDirection () const { return direction_; }
25+ void setType (const odb:: dbSigType& in) { type_ = in; }
26+ odb:: dbSigType getType () const { return type_; }
27+ void setDirection (const odb:: dbIoType& in) { direction_ = in; }
28+ odb:: dbIoType getDirection () const { return direction_; }
2829 // others
2930 void setIndexInOwner (int value) { index_in_owner_ = value; }
3031 int getIndexInOwner () { return index_in_owner_; }
@@ -47,8 +48,8 @@ class frTerm : public frBlockObject
4748
4849 frString name_; // A, B, Z, VSS, VDD
4950 frNet* net_{nullptr }; // set later, term in instTerm does not have net
50- dbSigType type_{dbSigType::SIGNAL};
51- dbIoType direction_{dbIoType::INPUT};
51+ odb:: dbSigType type_{odb:: dbSigType::SIGNAL};
52+ odb:: dbIoType direction_{odb:: dbIoType::INPUT};
5253 int index_in_owner_{0 };
5354 odb::Rect bbox_;
5455};
0 commit comments