summaryrefslogtreecommitdiff
path: root/src/systemc/core/sc_time.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/systemc/core/sc_time.cc')
-rw-r--r--src/systemc/core/sc_time.cc21
1 files changed, 21 insertions, 0 deletions
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 &)
{