From: Gabe Black Date: Sat, 16 Jun 2018 03:16:48 +0000 (-0700) Subject: systemc: Add some deprecated sc_time factory methods. X-Git-Tag: v19.0.0.0~1896 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=663f5f6976e7d6732399409fc9cb0b1fcefe586d;p=gem5.git systemc: Add some deprecated sc_time factory methods. Change-Id: I0d9a7040a48b9f0d0079e9daecaf44ea78c186de Reviewed-on: https://gem5-review.googlesource.com/11273 Reviewed-by: Gabe Black Maintainer: Gabe Black --- diff --git a/src/systemc/core/sc_time.cc b/src/systemc/core/sc_time.cc index 383d1d4ad..5d6b6348f 100644 --- a/src/systemc/core/sc_time.cc +++ b/src/systemc/core/sc_time.cc @@ -158,6 +158,27 @@ sc_time::print(std::ostream &) const warn("%s not implemented.\n", __PRETTY_FUNCTION__); } +sc_time +sc_time::from_value(sc_dt::uint64) +{ + warn("%s not implemented.\n", __PRETTY_FUNCTION__); + return sc_time(); +} + +sc_time +sc_time::from_seconds(double) +{ + warn("%s not implemented.\n", __PRETTY_FUNCTION__); + return sc_time(); +} + +sc_time +sc_time::from_string(const char *str) +{ + warn("%s not implemented.\n", __PRETTY_FUNCTION__); + return sc_time(); +} + const sc_time operator + (const sc_time &, const sc_time &) { diff --git a/src/systemc/ext/core/sc_time.hh b/src/systemc/ext/core/sc_time.hh index 32f7eadda..d52ed8112 100644 --- a/src/systemc/ext/core/sc_time.hh +++ b/src/systemc/ext/core/sc_time.hh @@ -75,6 +75,11 @@ class sc_time sc_time &operator /= (double); void print(std::ostream & =std::cout) const; + + // Deprecated + static sc_time from_value(sc_dt::uint64); + static sc_time from_seconds(double); + static sc_time from_string(const char *str); }; const sc_time operator + (const sc_time &, const sc_time &);