source: branches/with_autoconf/src/sc_event_finder.h @ 8

Last change on this file since 8 was 8, checked in by nipo, 16 years ago

Checkin autotools magic

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
17namespace sc_core {
18
19class sc_event_finder {
20  /*const*/sc_core::sc_port_base &a_port;
21public:
22  sc_event_finder (/*const*/ sc_core::sc_port_base&);
23  virtual ~sc_event_finder ();
24
25  // methods
26  /*const*/ sc_core::sc_port_base& port () /*const*/;
27 
28  // operators
29
30private:
31  // disabled
32  sc_event_finder ();
33  sc_event_finder (const sc_event_finder &);
34  sc_event_finder& operator = (const sc_event_finder&); 
35};
36
37}
38
39#endif /* __SC_EVENT_FINDER_H__ */
Note: See TracBrowser for help on using the repository browser.