// Copyright (c) 2008 Ole Weidner // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include #include #include "saga-job.hpp" /////////////////////////////////////////////////////////////////////////////// void run_test (std::string service_url) { saga::url url_1("file://localhost//tmp/TEST_FILE"); saga::url url_2("gridftp://gg101.cct.lsu.edu//etc/motd"); saga::url url_3("gridftp://gg101.cct.lsu.edu//tmp/TEST_FILE"); //saga::filesystem::file file_1(url_2); //file_1.copy(url_3); saga::filesystem::file file_2(url_2); file_2.copy(url_1); //) }