Last change
on this file since 32 was
27,
checked in by buchmann, 16 years ago
|
SystemCASS now uses autoconf/automake to build the API. Regression tests still
use the old Makefiles.
(thanks to Nicolas Pouillon)
The library directory no longer is "lib-arch-system". The directory now is "lib-linux". Everyone needs to pay attention about SYSTEMCASS environment variable.
Changes:
- system header includes
- Add includes to config.h (generated by autoconf/automake)
- test:
- linux preprocessor macro instead of _WIN32
- CONFIG_DEBUG instead of DEBUG
Removes:
- Makefile
- guess_endianness.cc
- guess_os.sh
- assert.h (we now use standard assert.h)
- Options.def
|
File size:
1.2 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 { |
---|
[4] | 20 | /*const*/sc_core::sc_port_base &a_port; |
---|
[1] | 21 | public: |
---|
[4] | 22 | sc_event_finder (/*const*/ sc_core::sc_port_base&); |
---|
[1] | 23 | virtual ~sc_event_finder (); |
---|
| 24 | |
---|
| 25 | // methods |
---|
[4] | 26 | /*const*/ sc_core::sc_port_base& port () /*const*/; |
---|
[1] | 27 | |
---|
| 28 | // operators |
---|
| 29 | |
---|
| 30 | private: |
---|
| 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 | |
---|
[4] | 37 | } |
---|
| 38 | |
---|
[1] | 39 | #endif /* __SC_EVENT_FINDER_H__ */ |
---|
Note: See
TracBrowser
for help on using the repository browser.