systemc: Add some deprecated sc_time factory methods.
authorGabe Black <gabeblack@google.com>
Sat, 16 Jun 2018 03:16:48 +0000 (20:16 -0700)
committerGabe Black <gabeblack@google.com>
Tue, 28 Aug 2018 21:16:56 +0000 (21:16 +0000)
Change-Id: I0d9a7040a48b9f0d0079e9daecaf44ea78c186de
Reviewed-on: https://gem5-review.googlesource.com/11273
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>

src/systemc/core/sc_time.cc
src/systemc/ext/core/sc_time.hh

index 383d1d4ad6aba89c6c6c43a0d249a8ff0f9a0f66..5d6b6348f93f75a2bbc6f2cb35c574aaa8bd7bf1 100644 (file)
@@ -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 &)
 {
index 32f7eadda9527dcf97c092e253ffd0c3e6348d16..d52ed8112b94920b6ff70db7bb02acb920f77b7a 100644 (file)
@@ -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 &);