49a50
> class sc_trace_file;
50a52,66
> // Nonstandard
> // Despite having a warning "FOR INTERNAL USE ONLY!" in all caps above this
> // class definition in the Accellera implementation, it appears in their
> // examples and test programs, and so we need to have it here as well.
> struct sc_trace_params
> {
> sc_trace_file *tf;
> std::string name;
>
> sc_trace_params(sc_trace_file *tf, const std::string &name) :
> tf(tf), name(name)
> {}
> };
> typedef std::vector<sc_trace_params *> sc_trace_params_vec;
>