File tree Expand file tree Collapse file tree 3 files changed +13
-1
lines changed
Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -161,7 +161,8 @@ class dbGroupType
161161 {
162162 PHYSICAL_CLUSTER,
163163 VOLTAGE_DOMAIN,
164- POWER_DOMAIN
164+ POWER_DOMAIN,
165+ VISUAL_DEBUG
165166 };
166167
167168 // /
Original file line number Diff line number Diff line change @@ -328,6 +328,10 @@ const char* dbGroupType::getString() const
328328 case POWER_DOMAIN:
329329 value = " POWER_DOMAIN" ;
330330 break ;
331+
332+ case VISUAL_DEBUG:
333+ value = " VISUAL_DEBUG" ;
334+ break ;
331335 }
332336
333337 return value;
Original file line number Diff line number Diff line change 16261626 case odb::dbGroupType::POWER_DOMAIN:
16271627 obj = Tcl_NewStringObj (" POWER_DOMAIN" , -1 );
16281628 break ;
1629+ case odb::dbGroupType::VISUAL_DEBUG:
1630+ obj = Tcl_NewStringObj (" VISUAL_DEBUG" , -1 );
1631+ break ;
16291632 }
16301633 Tcl_SetObjResult (interp, obj);
16311634}
16371640 $1 = odb::dbGroupType::VOLTAGE_DOMAIN;
16381641 } else if (strcasecmp (str, " POWER_DOMAIN" ) == 0 ) {
16391642 $1 = odb::dbGroupType::POWER_DOMAIN;
1643+ } else if (strcasecmp (str, " VISUAL_DEBUG" ) == 0 ) {
1644+ $1 = odb::dbGroupType::VISUAL_DEBUG;
16401645 }
16411646}
16421647%typemap(typecheck) odb::dbGroupType, dbGroupType {
16491654 found = true ;
16501655 } else if (strcasecmp (str, " POWER_DOMAIN" ) == 0 ) {
16511656 found = true ;
1657+ } else if (strcasecmp (str, " VISUAL_DEBUG" ) == 0 ) {
1658+ found = true ;
16521659 }
16531660 }
16541661 if (found) {
You can’t perform that action at this time.
0 commit comments