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.3 KB
|
Rev | Line | |
---|
[1] | 1 | /*------------------------------------------------------------\ |
---|
| 2 | | | |
---|
| 3 | | Tool : systemcass | |
---|
| 4 | | | |
---|
| 5 | | File : sc_pat_trace.h | |
---|
| 6 | | | |
---|
| 7 | | Author : Kingbo Paul-Jerome | |
---|
| 8 | | Buchmann Richard | |
---|
| 9 | | | |
---|
| 10 | | Date : 09_07_2004 | |
---|
| 11 | | | |
---|
| 12 | \------------------------------------------------------------*/ |
---|
[52] | 13 | |
---|
[1] | 14 | #ifndef SC_PAT_TRACE_H |
---|
| 15 | #define SC_PAT_TRACE_H |
---|
| 16 | |
---|
| 17 | #include "sc_fwd.h" |
---|
| 18 | |
---|
| 19 | |
---|
| 20 | namespace sc_core { |
---|
| 21 | |
---|
| 22 | // Create PAT file |
---|
[52] | 23 | extern sc_trace_file * sc_create_pat_trace_file(const char * name); |
---|
[1] | 24 | |
---|
| 25 | // Close PAT file |
---|
| 26 | extern void sc_close_pat_trace_file( sc_trace_file* tf ); |
---|
| 27 | |
---|
| 28 | } // end of sc_core namespace |
---|
| 29 | |
---|
| 30 | using sc_core::sc_create_pat_trace_file; |
---|
| 31 | using sc_core::sc_close_pat_trace_file; |
---|
| 32 | |
---|
| 33 | #endif |
---|
| 34 | |
---|
[52] | 35 | /* |
---|
| 36 | # Local Variables: |
---|
| 37 | # tab-width: 4; |
---|
| 38 | # c-basic-offset: 4; |
---|
| 39 | # c-file-offsets:((innamespace . 0)(inline-open . 0)); |
---|
| 40 | # indent-tabs-mode: nil; |
---|
| 41 | # End: |
---|
| 42 | # |
---|
| 43 | # vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=4:softtabstop=4 |
---|
| 44 | */ |
---|
| 45 | |
---|
Note: See
TracBrowser
for help on using the repository browser.