Last change
on this file since 52 was
52,
checked in by meunier, 12 years ago
|
Code formatting in all source files.
|
File size:
1.5 KB
|
Rev | Line | |
---|
[1] | 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 | |
---|
[27] | 15 | #include "sc_fwd.h" |
---|
[1] | 16 | |
---|
[4] | 17 | namespace sc_core { |
---|
| 18 | |
---|
[1] | 19 | class sc_event_finder { |
---|
[52] | 20 | /*const*/sc_core::sc_port_base & a_port; |
---|
[1] | 21 | |
---|
[52] | 22 | public: |
---|
| 23 | sc_event_finder(/*const*/ sc_core::sc_port_base &); |
---|
| 24 | virtual ~sc_event_finder(); |
---|
[1] | 25 | |
---|
[52] | 26 | // methods |
---|
| 27 | // |
---|
| 28 | /*const*/ sc_core::sc_port_base& port () /*const*/; |
---|
| 29 | |
---|
| 30 | // operators |
---|
| 31 | |
---|
| 32 | private: |
---|
| 33 | // disabled |
---|
| 34 | sc_event_finder(); |
---|
| 35 | sc_event_finder(const sc_event_finder &); |
---|
| 36 | sc_event_finder & operator = (const sc_event_finder &); |
---|
[1] | 37 | }; |
---|
| 38 | |
---|
[4] | 39 | } |
---|
| 40 | |
---|
[1] | 41 | #endif /* __SC_EVENT_FINDER_H__ */ |
---|
[52] | 42 | |
---|
| 43 | /* |
---|
| 44 | # Local Variables: |
---|
| 45 | # tab-width: 4; |
---|
| 46 | # c-basic-offset: 4; |
---|
| 47 | # c-file-offsets:((innamespace . 0)(inline-open . 0)); |
---|
| 48 | # indent-tabs-mode: nil; |
---|
| 49 | # End: |
---|
| 50 | # |
---|
| 51 | # vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=4:softtabstop=4 |
---|
| 52 | */ |
---|
| 53 | |
---|
Note: See
TracBrowser
for help on using the repository browser.