source: latest/src/sc_pat_trace.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.1 KB
Line 
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\------------------------------------------------------------*/
13#ifndef SC_PAT_TRACE_H
14#define SC_PAT_TRACE_H
15
16#include "sc_fwd.h"
17
18
19namespace sc_core {
20
21// Create PAT file
22extern sc_trace_file *sc_create_pat_trace_file(const char* name);
23
24// Close PAT file
25extern void sc_close_pat_trace_file( sc_trace_file* tf );
26
27} // end of sc_core namespace
28
29using sc_core::sc_create_pat_trace_file;
30using sc_core::sc_close_pat_trace_file;
31
32#endif
33
Note: See TracBrowser for help on using the repository browser.