/*------------------------------------------------------------\ | | | Tool : systemcass | | | | File : sc_event_finder.h | | | | Author : Buchmann Richard | | | | Date : 09_07_2004 | | | \------------------------------------------------------------*/ #ifndef __SC_EVENT_FINDER_H__ #define __SC_EVENT_FINDER_H__ #include "sc_fwd.h" namespace sc_core { class sc_event_finder { /*const*/sc_core::sc_port_base &a_port; public: sc_event_finder (/*const*/ sc_core::sc_port_base&); virtual ~sc_event_finder (); // methods /*const*/ sc_core::sc_port_base& port () /*const*/; // operators private: // disabled sc_event_finder (); sc_event_finder (const sc_event_finder &); sc_event_finder& operator = (const sc_event_finder&); }; } #endif /* __SC_EVENT_FINDER_H__ */