ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/branches/new_design/OOPSE-3.0/src/io/BASS_interface.cpp
(Generate patch)

Comparing branches/new_design/OOPSE-3.0/src/io/BASS_interface.cpp (file contents):
Revision 1840 by tim, Tue Nov 30 22:43:51 2004 UTC vs.
Revision 1841 by tim, Fri Dec 3 17:59:45 2004 UTC

# Line 27 | Line 27 | Globals *the_globals;
27   void decr_block();
28  
29   MakeStamps *the_stamps;
30 < Globals *the_globals;
30 > Globals *the_simParams;
31  
32   // Functions **********************************************
33  
# Line 54 | Line 54 | int event_handler( event* the_event ){
54  
55      case ZCONSTRAINT:
56        incr_block( ZCONSTRAINT_BLK );
57 <      handled = the_globals->newZconstraint( the_event );
57 >      handled = the_simParams->newZconstraint( the_event );
58        break;
59        
60      case COMPONENT:
61        incr_block( COMPONENT_BLK );
62 <      handled = the_globals->newComponent( the_event );
62 >      handled = the_simParams->newComponent( the_event );
63        break;
64  
65      case ASSIGNMENT:
66 <      handled = the_globals->globalAssign( the_event );
66 >      handled = the_simParams->globalAssign( the_event );
67        break;
68  
69      case BLOCK_END:
70 <      handled = the_globals->globalEnd( the_event );
70 >      handled = the_simParams->globalEnd( the_event );
71        break;
72        
73      default:
# Line 294 | Line 294 | int event_handler( event* the_event ){
294      switch( the_event->event_type ){
295        
296      case ASSIGNMENT:
297 <      handled = the_globals->zConstraintAssign( the_event );
297 >      handled = the_simParams->zConstraintAssign( the_event );
298        break;
299        
300      case BLOCK_END:
301        decr_block();
302 <      handled = the_globals->zConstraintEnd( the_event );
302 >      handled = the_simParams->zConstraintEnd( the_event );
303        break;
304  
305      default:
# Line 314 | Line 314 | int event_handler( event* the_event ){
314      switch( the_event->event_type ){
315        
316      case ASSIGNMENT:
317 <      handled = the_globals->componentAssign( the_event );
317 >      handled = the_simParams->componentAssign( the_event );
318        break;
319        
320      case BLOCK_END:
321        decr_block();
322 <      handled = the_globals->componentEnd(the_event );
322 >      handled = the_simParams->componentEnd(the_event );
323        break;
324  
325      default:
# Line 381 | Line 381 | void set_interface_stamps( MakeStamps* ms, Globals* g
381   void set_interface_stamps( MakeStamps* ms, Globals* g ){
382  
383    the_stamps = ms;
384 <  the_globals = g;
384 >  the_simParams = g;
385    
386   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines