trunk/branch integration: source indentation

This commit is contained in:
Marian Krivos
2011-08-23 07:01:52 +00:00
parent 308170b4cb
commit 0aab0d41d9

View File

@@ -65,13 +65,13 @@ class Foundation_API TemporaryFile: public File
{
public:
TemporaryFile();
/// Creates the TemporaryFile.
/// Creates the TemporaryFile.
TemporaryFile(const std::string& tempDir);
/// Creates the TemporaryFile in the tempDir directory.
/// Creates the TemporaryFile using the given directory.
~TemporaryFile();
/// Destroys the TemporaryFile and
~TemporaryFile();
/// Destroys the TemporaryFile and
/// deletes the corresponding file on
/// disk unless keep() or keepUntilExit()
/// has been called.
@@ -89,14 +89,14 @@ public:
/// Registers the given file for deletion
/// at process termination.
static std::string tempName(const std::string& tempDir = "");
/// Returns a unique path name for a temporary
/// file in the system's scratch directory if argument is empty string
/// or in the provided directory name.
/// (see Path::temp()).
static std::string tempName(const std::string& tempDir = "");
/// Returns a unique path name for a temporary
/// file in the system's scratch directory (see Path::temp())
/// if tempDir is empty or in the directory specified in tempDir
/// otherwise.
private:
bool _keep;
bool _keep;
};