Remove unused function PBD::copy_file

git-svn-id: svn://localhost/ardour2/trunk@2381 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Tim Mayberry 2007-09-04 04:48:30 +00:00
parent 1f33d1d615
commit e7398da7ec
4 changed files with 0 additions and 87 deletions

View File

@ -57,7 +57,6 @@
#include <pbd/pthread_utils.h>
#include <pbd/search_path.h>
#include <pbd/stacktrace.h>
#include <pbd/copyfile.h>
#include <ardour/audioengine.h>
#include <ardour/configuration.h>

View File

@ -22,7 +22,6 @@ basename.cc
base_ui.cc
command.cc
convert.cc
copyfile.cc
controllable.cc
enumwriter.cc
dmalloc.cc

View File

@ -1,57 +0,0 @@
/*
Copyright (C) 2000-2007 Paul Davis
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., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <fstream>
#include <unistd.h>
#include <pbd/copyfile.h>
#include <pbd/error.h>
#include <pbd/compose.h>
#include "i18n.h"
using namespace PBD;
using namespace std;
bool
PBD::copy_file (Glib::ustring from, Glib::ustring to)
{
ifstream in (from.c_str());
ofstream out (to.c_str());
if (!in) {
error << string_compose (_("Could not open %1 for copy"), from) << endmsg;
return false;
}
if (!out) {
error << string_compose (_("Could not open %1 as copy"), to) << endmsg;
return false;
}
out << in.rdbuf();
if (!in || !out) {
error << string_compose (_("Could not copy existing file %1 to %2"), from, to) << endmsg;
unlink (to.c_str());
return false;
}
return true;
}

View File

@ -1,28 +0,0 @@
/*
Copyright (C) 2000-2007 Paul Davis
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., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <glibmm/ustring.h>
namespace PBD {
/**
* @return true if file was successfully copied
*/
bool copy_file (Glib::ustring from, Glib::ustring to);
}