summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2007-09-04 04:48:30 +0000
committerTim Mayberry <mojofunk@gmail.com>2007-09-04 04:48:30 +0000
commite7398da7ec7ab70fba32f82e4c3bd7ace52d7514 (patch)
tree1eff0c06a896fca8ca973cbce72660b4332e3007 /libs
parent1f33d1d6158822b280566668d05818d534626080 (diff)
Remove unused function PBD::copy_file
git-svn-id: svn://localhost/ardour2/trunk@2381 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/session_state.cc1
-rw-r--r--libs/pbd/SConscript1
-rw-r--r--libs/pbd/copyfile.cc57
-rw-r--r--libs/pbd/pbd/copyfile.h28
4 files changed, 0 insertions, 87 deletions
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 <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>
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 <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;
-}
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 <glibmm/ustring.h>
-
-namespace PBD {
-
- /**
- * @return true if file was successfully copied
- */
- bool copy_file (Glib::ustring from, Glib::ustring to);
-}