Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
133d58d6
Commit
133d58d6
authored
Aug 25, 2017
by
Ronan
Browse files
fix(ConferenceEvent): add getAddress impl
parent
ab41ae3c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
src/event/conference-event.cpp
src/event/conference-event.cpp
+5
-0
src/event/conference-event.h
src/event/conference-event.h
+4
-1
No files found.
src/event/conference-event.cpp
View file @
133d58d6
...
...
@@ -52,4 +52,9 @@ ConferenceEvent &ConferenceEvent::operator= (const ConferenceEvent &src) {
return
*
this
;
}
shared_ptr
<
Address
>
ConferenceEvent
::
getAddress
()
const
{
// TODO.
return
nullptr
;
}
LINPHONE_END_NAMESPACE
src/event/conference-event.h
View file @
133d58d6
...
...
@@ -28,18 +28,21 @@
LINPHONE_BEGIN_NAMESPACE
class
Address
;
class
Conference
;
class
ConferenceEventPrivate
;
class
LINPHONE_PUBLIC
ConferenceEvent
:
public
Event
{
public:
ConferenceEvent
(
Type
type
,
const
std
::
shared_ptr
<
Address
>
&
address
);
ConferenceEvent
(
const
ConferenceEvent
&
src
);
virtual
~
ConferenceEvent
()
=
default
;
ConferenceEvent
&
operator
=
(
const
ConferenceEvent
&
src
);
std
::
shared_ptr
<
Address
>
getAddress
()
const
;
protected:
ConferenceEvent
(
ConferenceEventPrivate
&
p
,
Type
type
);
private:
L_DECLARE_PRIVATE
(
ConferenceEvent
);
};
...
...
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