/*------------------------------------------------------------\ | | | Tool : systemcass | | | | File : sc_pat_trace.h | | | | Author : Kingbo Paul-Jerome | | Buchmann Richard | | | | Date : 09_07_2004 | | | \------------------------------------------------------------*/ #ifndef SC_PAT_TRACE_H #define SC_PAT_TRACE_H #include "sc_fwd.h" namespace sc_core { // Create PAT file extern sc_trace_file *sc_create_pat_trace_file(const char* name); // Close PAT file extern void sc_close_pat_trace_file( sc_trace_file* tf ); } // end of sc_core namespace using sc_core::sc_create_pat_trace_file; using sc_core::sc_close_pat_trace_file; #endif