diff --git a/cwIo.cpp b/cwIo.cpp index 54c0006..94ef47e 100644 --- a/cwIo.cpp +++ b/cwIo.cpp @@ -3134,3 +3134,9 @@ cw::rc_t cw::io::uiSendValue( handle_t h, unsigned uuId, const char* value ) return rc; } +void cw::io::uiReport( handle_t h ) +{ + ui::handle_t uiH; + if(_handleToUiHandle(h,uiH) == kOkRC ) + ui::report(uiH); +} diff --git a/cwIo.h b/cwIo.h index 2980dc9..40e1067 100644 --- a/cwIo.h +++ b/cwIo.h @@ -364,7 +364,7 @@ namespace cw rc_t uiSendValue( handle_t h, unsigned uuId, double value ); rc_t uiSendValue( handle_t h, unsigned uuId, const char* value ); - + void uiReport( handle_t h ); } }