Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
cmsos
worksuite
Commits
0da6a26e
Commit
0da6a26e
authored
May 12, 2021
by
Luciano Orsini
Browse files
references
#248
: added readiness
parent
b3822910
Changes
2
Hide whitespace changes
Inline
Side-by-side
pt/vpi/include/pt/vpi/version.h
View file @
0da6a26e
...
...
@@ -18,7 +18,7 @@
// !!! Edit this line to reflect the latest package version !!!
#define CORE_PTVPI_VERSION_MAJOR 1
#define CORE_PTVPI_VERSION_MINOR
2
#define CORE_PTVPI_VERSION_MINOR
3
#define CORE_PTVPI_VERSION_PATCH 0
// If any previous versions available E.g. #define CORE_PTVPI_PREVIOUS_VERSIONS "3.8.0,3.8.1"
#undef CORE_PTVPI_PREVIOUS_VERSIONS
...
...
pt/vpi/src/common/Application.cc
View file @
0da6a26e
...
...
@@ -128,6 +128,12 @@ void pt::vpi::Application::actionPerformed (xdata::Event& e)
pt
::
PeerTransportAgent
*
pta
=
pt
::
getPeerTransportAgent
();
pta
->
addPeerTransport
(
pt_
);
// validate readiness example
auto
readiness
=
dynamic_cast
<
xdata
::
Boolean
*>
(
this
->
getApplicationInfoSpace
()
->
find
(
"readiness"
));
*
readiness
=
true
;
this
->
getApplicationInfoSpace
()
->
fireItemValueChanged
(
"readiness"
,
this
);
LOG4CPLUS_INFO
(
this
->
getApplicationLogger
(),
"IBV configured"
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment