Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
8327cdab
Commit
8327cdab
authored
11 years ago
by
Vittorio Giovara
Committed by
Tristan Matthews
11 years ago
Browse files
Options
Downloads
Patches
Plain Diff
client: do not compile undefined types
Change-Id: I6c839bb4689f461b2ff5954e13af0fa7fe1f215c Refs: #46447
parent
b7b6eb36
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
daemon/src/client/client.cpp
+4
-0
4 additions, 0 deletions
daemon/src/client/client.cpp
daemon/src/client/client.h
+4
-0
4 additions, 0 deletions
daemon/src/client/client.h
with
8 additions
and
0 deletions
daemon/src/client/client.cpp
+
4
−
0
View file @
8327cdab
...
...
@@ -44,8 +44,10 @@ Client::Client() : callManager_(new CallManager)
#ifdef SFL_PRESENCE
,
presenceManager_
(
new
PresenceManager
)
#endif
#if HAVE_DBUS
,
instanceManager_
(
0
)
,
dispatcher_
(
0
)
#endif
#ifdef SFL_VIDEO
,
videoControls_
(
0
)
#endif
...
...
@@ -62,8 +64,10 @@ Client::~Client()
#ifdef SFL_VIDEO
delete
videoControls_
;
#endif
#if HAVE_DBUS
delete
dispatcher_
;
delete
instanceManager_
;
#endif
delete
configurationManager_
;
#ifdef SFL_PRESENCE
delete
presenceManager_
;
...
...
This diff is collapsed.
Click to expand it.
daemon/src/client/client.h
+
4
−
0
View file @
8327cdab
...
...
@@ -49,9 +49,11 @@ class PresenceManager;
class
VideoControls
;
#endif
#if HAVE_DBUS
namespace
DBus
{
class
BusDispatcher
;
}
#endif
class
Client
{
public:
...
...
@@ -80,8 +82,10 @@ class Client {
#ifdef SFL_PRESENCE
PresenceManager
*
presenceManager_
;
#endif
#if HAVE_DBUS
Instance
*
instanceManager_
;
DBus
::
BusDispatcher
*
dispatcher_
;
#endif
#ifdef SFL_VIDEO
VideoControls
*
videoControls_
;
#endif
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment