delayAsString
Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
parent
0b491ce190
commit
73c2cca24c
|
|
@ -223,6 +223,14 @@ delayAsString(const Delay &delay,
|
|||
sta->units()->timeUnit()->digits(), sta);
|
||||
}
|
||||
|
||||
std::string
|
||||
delayAsString(const Delay &delay,
|
||||
int digits,
|
||||
const StaState *sta)
|
||||
{
|
||||
return delayAsString(delay, EarlyLate::late(), digits, sta);
|
||||
}
|
||||
|
||||
std::string
|
||||
delayAsString(const Delay &delay,
|
||||
const EarlyLate *early_late,
|
||||
|
|
|
|||
|
|
@ -207,9 +207,15 @@ void
|
|||
delaySetMean(Delay &delay,
|
||||
float mean);
|
||||
|
||||
// early_late == late
|
||||
std::string
|
||||
delayAsString(const Delay &delay,
|
||||
const StaState *sta);
|
||||
// early_late == late
|
||||
std::string
|
||||
delayAsString(const Delay &delay,
|
||||
int digits,
|
||||
const StaState *sta);
|
||||
std::string
|
||||
delayAsString(const Delay &delay,
|
||||
const EarlyLate *early_late,
|
||||
|
|
|
|||
Loading…
Reference in New Issue