sources for 1.3

This commit is contained in:
Guenter Obiltschnig
2006-11-17 16:21:51 +00:00
parent 7ff71d107f
commit 768642ae98
744 changed files with 6781 additions and 1036 deletions

View File

@@ -1,7 +1,7 @@
//
// Path.h
//
// $Id: //poco/1.2/Foundation/include/Poco/Path.h#1 $
// $Id: //poco/1.3/Foundation/include/Poco/Path.h#1 $
//
// Library: Foundation
// Package: Filesystem
@@ -108,16 +108,16 @@ public:
/// Assignment operator.
Path& operator = (const std::string& path);
/// Assigns a string containing a path.
/// Assigns a string containing a path in native format.
Path& operator = (const char* path);
/// Assigns a string containing a path.
/// Assigns a string containing a path in native format.
void swap(Path& path);
/// Swaps the path with another one.
Path& assign(const std::string& path);
/// Assigns a string containing a path.
/// Assigns a string containing a path in native format.
Path& assign(const std::string& path, Style style);
/// Assigns a string containing a path.
@@ -141,7 +141,8 @@ public:
/// Assigns a string containing a path.
bool tryParse(const std::string& path);
/// Tries to interpret the given string as a path.
/// Tries to interpret the given string as a path
/// in native format.
/// If the path is syntactically valid, assigns the
/// path and returns true. Otherwise leaves the
/// object unchanged and returns false.