Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
BC
public
liblinphone
Commits
47324ff0
Commit
47324ff0
authored
Jan 09, 2018
by
Ronan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(utils): add new fs namespace with copy function
parent
f5a75c9d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
41 additions
and
0 deletions
+41
-0
include/CMakeLists.txt
include/CMakeLists.txt
+1
-0
src/CMakeLists.txt
src/CMakeLists.txt
+1
-0
src/utils/fs.cpp
src/utils/fs.cpp
+39
-0
No files found.
include/CMakeLists.txt
View file @
47324ff0
...
...
@@ -100,6 +100,7 @@ set(ENUMS_HEADER_FILES
set
(
UTILS_HEADER_FILES
enum-generator.h
enum-mask.h
fs.h
general.h
magic-macros.h
traits.h
...
...
src/CMakeLists.txt
View file @
47324ff0
...
...
@@ -252,6 +252,7 @@ set(LINPHONE_CXX_OBJECTS_SOURCE_FILES
sal/refer-op.cpp
sal/register-op.cpp
sal/sal.cpp
utils/fs.cpp
utils/general.cpp
utils/payload-type-handler.cpp
utils/utils.cpp
...
...
src/utils/fs.cpp
0 → 100644
View file @
47324ff0
/*
* fs.cpp
* Copyright (C) 2010-2017 Belledonne Communications SARL
*
* 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 2
* 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.
*/
#include <fstream>
#include "linphone/utils/fs.h"
// =============================================================================
using
namespace
std
;
LINPHONE_BEGIN_NAMESPACE
namespace
Fs
{
bool
copy
(
const
string
&
srcPath
,
const
string
&
destPath
)
{
ifstream
src
(
srcPath
,
ios
::
binary
);
ofstream
dest
(
destPath
,
ios
::
binary
);
dest
<<
src
.
rdbuf
();
return
!
dest
.
fail
();
}
}
LINPHONE_END_NAMESPACE
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