From e7398da7ec7ab70fba32f82e4c3bd7ace52d7514 Mon Sep 17 00:00:00 2001 From: Tim Mayberry Date: Tue, 4 Sep 2007 04:48:30 +0000 Subject: Remove unused function PBD::copy_file git-svn-id: svn://localhost/ardour2/trunk@2381 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/session_state.cc | 1 - libs/pbd/SConscript | 1 - libs/pbd/copyfile.cc | 57 -------------------------------------------- libs/pbd/pbd/copyfile.h | 28 ---------------------- 4 files changed, 87 deletions(-) delete mode 100644 libs/pbd/copyfile.cc delete mode 100644 libs/pbd/pbd/copyfile.h (limited to 'libs') diff --git a/libs/ardour/session_state.cc b/libs/ardour/session_state.cc index 55a79c4472..ad4473bd87 100644 --- a/libs/ardour/session_state.cc +++ b/libs/ardour/session_state.cc @@ -57,7 +57,6 @@ #include #include #include -#include #include #include diff --git a/libs/pbd/SConscript b/libs/pbd/SConscript index 55c8018c4b..303ac84552 100644 --- a/libs/pbd/SConscript +++ b/libs/pbd/SConscript @@ -22,7 +22,6 @@ basename.cc base_ui.cc command.cc convert.cc -copyfile.cc controllable.cc enumwriter.cc dmalloc.cc diff --git a/libs/pbd/copyfile.cc b/libs/pbd/copyfile.cc deleted file mode 100644 index b4a654dbe8..0000000000 --- a/libs/pbd/copyfile.cc +++ /dev/null @@ -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 -#include - -#include -#include -#include - -#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; -} diff --git a/libs/pbd/pbd/copyfile.h b/libs/pbd/pbd/copyfile.h deleted file mode 100644 index f233d68d87..0000000000 --- a/libs/pbd/pbd/copyfile.h +++ /dev/null @@ -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 - -namespace PBD { - - /** - * @return true if file was successfully copied - */ - bool copy_file (Glib::ustring from, Glib::ustring to); -} -- cgit v1.2.3