Ignore:
Timestamp:
Mar 10, 2008, 12:37:25 PM (16 years ago)
Author:
nipo
Message:

Towards SystemC-2.2 LRM:

  • Implement sc_time with units
  • Have a systemc header with no namespace pollution
File:
1 edited

Legend:

Unmodified
Added
Removed
  • sources/src/sc_event_finder.h

    r1 r4  
    1515#include"sc_fwd.h"
    1616
     17namespace sc_core {
     18
    1719class sc_event_finder {
    18   /*const*/sc_port_base &a_port;
     20  /*const*/sc_core::sc_port_base &a_port;
    1921public:
    20   sc_event_finder (/*const*/ sc_port_base&);
     22  sc_event_finder (/*const*/ sc_core::sc_port_base&);
    2123  virtual ~sc_event_finder ();
    2224
    2325  // methods
    24   /*const*/ sc_port_base& port () /*const*/;
     26  /*const*/ sc_core::sc_port_base& port () /*const*/;
    2527 
    2628  // operators
     
    3335};
    3436
     37}
     38
    3539#endif /* __SC_EVENT_FINDER_H__ */
Note: See TracChangeset for help on using the changeset viewer.