Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Cameo
cameo
Commits
99d09eeb
Commit
99d09eeb
authored
Oct 30, 2020
by
legoc
Browse files
(split) Removed reference in a string return
parent
bd11b48c
Changes
4
Hide whitespace changes
Inline
Side-by-side
include/Application.h
View file @
99d09eeb
...
@@ -347,7 +347,7 @@ public:
...
@@ -347,7 +347,7 @@ public:
const
std
::
string
&
getName
()
const
;
const
std
::
string
&
getName
()
const
;
const
std
::
string
&
getApplicationName
()
const
;
const
std
::
string
&
getApplicationName
()
const
;
int
getApplicationId
()
const
;
int
getApplicationId
()
const
;
const
std
::
string
&
getApplicationEndpoint
()
const
;
std
::
string
getApplicationEndpoint
()
const
;
/**
/**
* Returns true if the wait succeeds or false if it was canceled.
* Returns true if the wait succeeds or false if it was canceled.
...
...
src/Application.cpp
View file @
99d09eeb
...
@@ -786,7 +786,7 @@ int Publisher::getApplicationId() const {
...
@@ -786,7 +786,7 @@ int Publisher::getApplicationId() const {
return
m_impl
->
getApplicationId
();
return
m_impl
->
getApplicationId
();
}
}
const
std
::
string
&
Publisher
::
getApplicationEndpoint
()
const
{
std
::
string
Publisher
::
getApplicationEndpoint
()
const
{
return
m_impl
->
getApplicationEndpoint
();
return
m_impl
->
getApplicationEndpoint
();
}
}
...
...
src/impl/PublisherImpl.cpp
View file @
99d09eeb
...
@@ -59,7 +59,7 @@ int PublisherImpl::getApplicationId() const {
...
@@ -59,7 +59,7 @@ int PublisherImpl::getApplicationId() const {
return
m_application
->
getId
();
return
m_application
->
getId
();
}
}
const
std
::
string
&
PublisherImpl
::
getApplicationEndpoint
()
const
{
std
::
string
PublisherImpl
::
getApplicationEndpoint
()
const
{
return
m_application
->
getEndpoint
().
toString
();
return
m_application
->
getEndpoint
().
toString
();
}
}
...
...
src/impl/PublisherImpl.h
View file @
99d09eeb
...
@@ -37,7 +37,7 @@ public:
...
@@ -37,7 +37,7 @@ public:
const
std
::
string
&
getName
()
const
;
const
std
::
string
&
getName
()
const
;
const
std
::
string
&
getApplicationName
()
const
;
const
std
::
string
&
getApplicationName
()
const
;
int
getApplicationId
()
const
;
int
getApplicationId
()
const
;
const
std
::
string
&
getApplicationEndpoint
()
const
;
std
::
string
getApplicationEndpoint
()
const
;
bool
waitForSubscribers
();
bool
waitForSubscribers
();
void
cancelWaitForSubscribers
();
void
cancelWaitForSubscribers
();
...
...
Shervin Nourbakhsh
@nourbakhsh
mentioned in commit
46e44691
·
Apr 23, 2021
mentioned in commit
46e44691
mentioned in commit 46e44691a03808a23a464818487b0dd014a9c57e
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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