335a336,348
> void
> Process::lastReport(::sc_core::sc_report *report)
> {
> if (report) {
> _lastReport = std::unique_ptr<::sc_core::sc_report>(
> new ::sc_core::sc_report(*report));
> } else {
> _lastReport = nullptr;
> }
> }
>
> ::sc_core::sc_report *Process::lastReport() const { return _lastReport.get(); }
>