Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
savoirfairelinux
jami-daemon
Commits
a84a6f88
Commit
a84a6f88
authored
Sep 11, 2013
by
Tristan Matthews
Browse files
* #29917: client: remove inline methods
parent
07a377c1
Changes
2
Hide whitespace changes
Inline
Side-by-side
daemon/src/client/client.h
View file @
a84a6f88
...
...
@@ -52,20 +52,14 @@ class Client {
Client
();
~
Client
();
CallManager
*
getCallManager
()
{
return
callManager_
;
}
ConfigurationManager
*
getConfigurationManager
()
{
return
configurationManager_
;
}
CallManager
*
getCallManager
();
ConfigurationManager
*
getConfigurationManager
();
PresenceManager
*
getPresenceManager
();
PresenceManager
*
getPresenceManager
()
{
return
presenceManager_
;
}
#ifdef SFL_VIDEO
VideoControls
*
getVideoControls
()
{
return
videoControls_
;
}
VideoControls
*
getVideoControls
();
#endif
void
event_loop
();
...
...
daemon/src/client/dbus/client.cpp
View file @
a84a6f88
...
...
@@ -142,3 +142,29 @@ void Client::exit()
return
;
}
}
CallManager
*
Client
::
getCallManager
()
{
return
callManager_
;
}
ConfigurationManager
*
Client
::
getConfigurationManager
()
{
return
configurationManager_
;
}
PresenceManager
*
Client
::
getPresenceManager
()
{
return
presenceManager_
;
}
#ifdef SFL_VIDEO
VideoControls
*
Client
::
getVideoControls
()
{
return
videoControls_
;
}
#endif
Write
Preview
Supports
Markdown
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