source: latest/src/sc_event_finder.h @ 1

Last change on this file since 1 was 1, checked in by buchmann, 17 years ago

Initial import from CVS repository

File size: 1.2 KB
Line 
1/*------------------------------------------------------------\
2|                                                             |
3| Tool    :                  systemcass                       |
4|                                                             |
5| File    :                 sc_event_finder.h                 |
6|                                                             |
7| Author  :                 Buchmann Richard                  |
8|                                                             |
9| Date    :                   09_07_2004                      |
10|                                                             |
11\------------------------------------------------------------*/
12#ifndef __SC_EVENT_FINDER_H__
13#define __SC_EVENT_FINDER_H__
14
15#include"sc_fwd.h"
16
17class sc_event_finder {
18  /*const*/sc_port_base &a_port;
19public:
20  sc_event_finder (/*const*/ sc_port_base&);
21  virtual ~sc_event_finder ();
22
23  // methods
24  /*const*/ sc_port_base& port () /*const*/;
25 
26  // operators
27
28private:
29  // disabled
30  sc_event_finder ();
31  sc_event_finder (const sc_event_finder &);
32  sc_event_finder& operator = (const sc_event_finder&); 
33};
34
35#endif /* __SC_EVENT_FINDER_H__ */
Note: See TracBrowser for help on using the repository browser.