|
| virtual void | scheduleClockEventAt (clocktime_t time, ClockEvent *msg) |
| |
| virtual void | scheduleClockEventAfter (clocktime_t delay, ClockEvent *msg) |
| |
| virtual cMessage * | cancelClockEvent (ClockEvent *msg) |
| |
| virtual void | cancelAndDeleteClockEvent (ClockEvent *msg) |
| |
| virtual void | rescheduleClockEventAt (clocktime_t time, ClockEvent *msg) |
| |
| virtual void | rescheduleClockEventAfter (clocktime_t time, ClockEvent *msg) |
| |
| virtual clocktime_t | computeClockTimeFromSimTime (simtime_t time) const |
| |
| virtual simtime_t | computeSimTimeFromClockTime (clocktime_t time) const |
| |
| virtual clocktime_t | getClockTime () const |
| |
| virtual clocktime_t | getArrivalClockTime (ClockEvent *msg) const |
| |
| | value () |
| |
| | value (const value_type &v) |
| |
| template<typename OtherValue , typename OtherUnits > |
| | value (const value< OtherValue, OtherUnits > &v) |
| |
| std::string | str () const |
| |
| const value_type & | get () const |
| |
| void | set (const value_type &v) |
| |
| template<typename OtherValue , typename OtherUnits > |
| value & | operator= (const value< OtherValue, OtherUnits > &other) |
| |
| template<typename OtherValue , typename OtherUnits , typename ResultValue = typename std::remove_cv<decltype(Value() + OtherValue())>::type> |
| value< ResultValue, Units > | operator+ (const value< OtherValue, OtherUnits > &other) const |
| |
| template<typename OtherValue , typename OtherUnits > |
| value & | operator+= (const value< OtherValue, OtherUnits > &other) |
| |
| template<typename OtherValue , typename OtherUnits > |
| value & | operator-= (const value< OtherValue, OtherUnits > &other) |
| |
| template<typename OtherValue , typename OtherUnits , typename ResultValue = typename std::remove_cv<decltype(Value() - OtherValue())>::type> |
| value< ResultValue, Units > | operator- (const value< OtherValue, OtherUnits > &other) const |
| |
| value | operator- () const |
| |
| template<typename OtherValue , typename OtherUnits , typename ResultValue = typename std::remove_cv<decltype(Value() * OtherValue())>::type> |
| value< ResultValue, compose< Units, OtherUnits > > | operator* (const value< OtherValue, OtherUnits > &other) const |
| |
| template<typename OtherValue > |
| value | operator* (OtherValue v) const |
| |
| value & | operator*= (const value_type &v) |
| |
| template<typename OtherValue , typename OtherUnits , typename ResultValue = typename std::remove_cv<decltype(Value() / OtherValue())>::type> |
| value< ResultValue, compose< Units, pow< OtherUnits, -1 > > > | operator/ (const value< OtherValue, OtherUnits > &other) const |
| |
| value | operator/ (const value_type &v) const |
| |
| value & | operator/= (const value_type &v) |
| |
| template<typename OtherValue , typename OtherUnits > |
| bool | operator== (const value< OtherValue, OtherUnits > &other) const |
| |
| template<typename OtherValue , typename OtherUnits > |
| bool | operator!= (const value< OtherValue, OtherUnits > &other) const |
| |
| template<typename OtherValue , typename OtherUnits > |
| bool | operator< (const value< OtherValue, OtherUnits > &other) const |
| |
| template<typename OtherValue , typename OtherUnits > |
| bool | operator<= (const value< OtherValue, OtherUnits > &other) const |
| |
| template<typename OtherValue , typename OtherUnits > |
| bool | operator> (const value< OtherValue, OtherUnits > &other) const |
| |
| template<typename OtherValue , typename OtherUnits > |
| bool | operator>= (const value< OtherValue, OtherUnits > &other) const |
| |
| value & | operator++ () |
| |
| value | operator++ (int) |
| |
| value & | operator-- () |
| |
| value | operator-- (int) |
| |