- Changed the wording on most error messages and diagnostics so that
  the user is not alarmed, and is somewhat guided toward a solution.
This commit is contained in:
Paul Beckingham
2010-10-06 23:29:45 -04:00
parent 4028a2fce4
commit 74dcdd897a
11 changed files with 118 additions and 123 deletions

View File

@@ -35,19 +35,19 @@ class Transport {
public:
Transport (const Uri&);
~Transport ();
static Transport* getTransport(const Uri&);
virtual void send (const std::string&) = 0;
virtual void recv (std::string) = 0;
static bool is_directory(const std::string&);
static bool is_filelist(const std::string&);
protected:
std::string executable;
std::vector<std::string> arguments;
Uri uri;
int execute();