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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
1990d0c8
Commit
1990d0c8
authored
11 years ago
by
Alexandre Lision
Browse files
Options
Downloads
Patches
Plain Diff
Removed managerimpl.i
parent
3d4fa87f
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
daemon/src/client/android/jni_interface.i
+0
-2
0 additions, 2 deletions
daemon/src/client/android/jni_interface.i
daemon/src/client/android/managerimpl.i
+0
-60
0 additions, 60 deletions
daemon/src/client/android/managerimpl.i
with
0 additions
and
62 deletions
daemon/src/client/android/jni_interface.i
+
0
−
2
View file @
1990d0c8
...
...
@@ -82,8 +82,6 @@ namespace std {
//%constant struct callmanager_callback* WRAPPER_CALLBACK_STRUCT = &wrapper_callback_struct;
%
include
"
managerimpl.i
"
%
include
"
callmanager.i
"
%
include
"
configurationmanager.i
"
...
...
This diff is collapsed.
Click to expand it.
daemon/src/client/android/managerimpl.i
deleted
100644 → 0
+
0
−
60
View file @
3d4fa87f
/*
* Copyright (C) 2004-2012 Savoir-Faire Linux Inc.
* Author: Emeric Vigier <emeric.vigier@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., 675 Mass Ave, Cambridge, MA 02139, 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.
*/
/* %nodefaultctor ManagerImpl;
%nodefaultdtor ManagerImpl; */
%
header
%
{
#include <managerimpl.h>
namespace Manager {
extern ManagerImpl& instance();
}
%}
class
ManagerImpl
{
public:
void init(const std::string &config_file);
void setPath(const std::string &path);
bool outgoingCall(const std::string&, const std::string&, const std::string&, const std::string& = "");
void refuseCall(const std::string& id);
bool answerCall(const std::string& id);
void hangupCall(const std::string& id);
}
;
//%rename(Manager_instance) Manager::instance;
namespace
Manager
{
ManagerImpl& Manager::instance()
{
// Meyers singleton
static ManagerImpl instance_;
return instance_;
}
}
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