Project 'savoirfairelinux/ring-daemon' was moved to 'savoirfairelinux/jami-daemon'. Please update any links and bookmarks that may still have the old path.
Select Git revision
manager.cpp
-
Change-Id: I7910b8a0b08910716fe0fba2a72f5caa776ed2f8 Reviewed-by:
Philippe Gorley <philippe.gorley@savoirfairelinux.com>
Change-Id: I7910b8a0b08910716fe0fba2a72f5caa776ed2f8 Reviewed-by:
Philippe Gorley <philippe.gorley@savoirfairelinux.com>
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
client.cpp 2.11 KiB
/*
* Copyright (C) 2004-2012 Savoir-Faire Linux Inc.
* Author: Pierre-Luc Beaudoin <pierre-luc.beaudoin@savoirfairelinux.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Additional permission under GNU GPL version 3 section 7:
*
* If you modify this program, or any covered work, by linking or
* combining it with the OpenSSL project's OpenSSL library (or a
* modified version of that library), containing parts covered by the
* terms of the OpenSSL or SSLeay licenses, Savoir-Faire Linux Inc.
* grants you additional permission to convey the resulting work.
* Corresponding Source for a non-source form of such a combination
* shall include the source code for the parts of OpenSSL used as well
* as that of the covered work.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "client/client.h"
#include "client/callmanager.h"
#include "client/configurationmanager.h"
Client::Client() : callManager_(new CallManager)
, configurationManager_(new ConfigurationManager)
, instanceManager_(0)
, dispatcher_(0)
#ifdef SFL_VIDEO
, videoControls_(0)
#endif
#ifdef USE_NETWORKMANAGER
, networkManager_(0)
#endif
{}
Client::~Client()
{
#ifdef USE_NETWORKMANAGER
delete networkManager_;
#endif
#ifdef SFL_VIDEO
delete videoControls_;
#endif
delete dispatcher_;
delete instanceManager_;
delete configurationManager_;
delete callManager_;
}
void Client::event_loop()
{}
void Client::exit()
{}