diff options
Diffstat (limited to 'src/systemc/core')
-rw-r--r-- | src/systemc/core/sc_time.cc | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/systemc/core/sc_time.cc b/src/systemc/core/sc_time.cc index ebc637baf..167b37494 100644 --- a/src/systemc/core/sc_time.cc +++ b/src/systemc/core/sc_time.cc @@ -273,4 +273,44 @@ sc_get_default_time_unit() return *(sc_time *)nullptr; } +sc_time_tuple::sc_time_tuple(const sc_time &) +{ + warn("%s not implemented.\n", __PRETTY_FUNCTION__); +} + +bool +sc_time_tuple::has_value() const +{ + warn("%s not implemented.\n", __PRETTY_FUNCTION__); + return false; +} + +sc_dt::uint64 +sc_time_tuple::value() const +{ + warn("%s not implemented.\n", __PRETTY_FUNCTION__); + return 0; +} + +const char * +sc_time_tuple::unit_symbol() const +{ + warn("%s not implemented.\n", __PRETTY_FUNCTION__); + return ""; +} + +double +sc_time_tuple::to_double() const +{ + warn("%s not implemented.\n", __PRETTY_FUNCTION__); + return 0.0; +} + +std::string +sc_time_tuple::to_string() const +{ + warn("%s not implemented.\n", __PRETTY_FUNCTION__); + return ""; +} + } // namespace sc_core |