mirror of
https://github.com/boostorg/filesystem.git
synced 2025-05-12 13:41:47 +00:00
Doc fixes
[SVN r80613]
This commit is contained in:
parent
08c11663d9
commit
60e765873f
@ -1466,7 +1466,7 @@ reference documentation.</p>
|
||||
</tr>
|
||||
</table>
|
||||
</blockquote>
|
||||
<pre><a name="filesystem_error-3-arg">filesystem_error</a>(const std::string& what_arg, const path_type& p1, error_code ec);</pre>
|
||||
<pre><a name="filesystem_error-3-arg">filesystem_error</a>(const std::string& what_arg, const path& p1, error_code ec);</pre>
|
||||
<blockquote>
|
||||
<p><i>Postcondition:</i></p>
|
||||
<table border="1" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="46%">
|
||||
@ -1494,7 +1494,7 @@ reference documentation.</p>
|
||||
</tr>
|
||||
</table>
|
||||
</blockquote>
|
||||
<pre><a name="filesystem_error-4-arg">filesystem_error</a>(const std::string& what_arg, const path_type& p1, const path_type& p2, error_code ec);</pre>
|
||||
<pre><a name="filesystem_error-4-arg">filesystem_error</a>(const std::string& what_arg, const path& p1, const path& p2, error_code ec);</pre>
|
||||
<blockquote>
|
||||
<p><i>Postcondition:</i></p>
|
||||
<table border="1" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="46%">
|
||||
@ -1761,13 +1761,13 @@ and permissions of a file.</p>
|
||||
// <a href="#directory_entry-constructors">constructors</a> and destructor
|
||||
directory_entry();
|
||||
directory_entry(const directory_entry&);
|
||||
explicit directory_entry(const path_type& p, file_status st=file_status(),
|
||||
explicit directory_entry(const path& p, file_status st=file_status(),
|
||||
file_status symlink_st=file_status());
|
||||
~directory_entry();
|
||||
|
||||
// <a href="#directory_entry-modifiers">modifiers</a>
|
||||
directory_entry& operator=(const directory_entry&);
|
||||
void assign(const path_type& p, file_status st=file_status(),
|
||||
void assign(const path& p, file_status st=file_status(),
|
||||
file_status symlink_st=file_status());
|
||||
void replace_filename(const path& p, file_status st=file_status(),
|
||||
file_status symlink_st=file_status());
|
||||
@ -1787,7 +1787,7 @@ and permissions of a file.</p>
|
||||
bool operator> (const directory_entry& rhs);
|
||||
bool operator>=(const directory_entry& rhs);
|
||||
private:
|
||||
path_type m_path; // for exposition only
|
||||
path m_path; // for exposition only
|
||||
mutable file_status m_status; // for exposition only; stat()-like
|
||||
mutable file_status m_symlink_status; // for exposition only; lstat()-like
|
||||
};
|
||||
@ -1831,7 +1831,7 @@ systems that provide status as a by-product of directory iteration.</i></span></
|
||||
</tr>
|
||||
</table>
|
||||
</blockquote>
|
||||
<pre>explicit directory_entry(const path_type& p, file_status st=file_status(), file_status symlink_st=file_status());</pre>
|
||||
<pre>explicit directory_entry(const path& p, file_status st=file_status(), file_status symlink_st=file_status());</pre>
|
||||
<blockquote>
|
||||
<p><i>Postcondition:</i></p>
|
||||
<table border="1" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="36%">
|
||||
@ -1854,7 +1854,7 @@ systems that provide status as a by-product of directory iteration.</i></span></
|
||||
</table>
|
||||
</blockquote>
|
||||
<h4> <a name="directory_entry-modifiers"> <code>directory_entry </code>modifiers</a></h4>
|
||||
<pre>void assign(const path_type& p, file_status st=file_status(), file_status symlink_st=file_status());</pre>
|
||||
<pre>void assign(const path& p, file_status st=file_status(), file_status symlink_st=file_status());</pre>
|
||||
<blockquote>
|
||||
<p><i>Postcondition:</i></p>
|
||||
<table border="1" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="36%">
|
||||
@ -3497,7 +3497,7 @@ multiple string types. His idea became the basis for the version 3 path design.<
|
||||
</font>
|
||||
<a href="http://www.boost.org/LICENSE_1_0.txt"><font size="2">www.boost.org/LICENSE_1_0.txt</font></a></p>
|
||||
<p><font size="2">Revised
|
||||
<!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B %Y" startspan -->23 August 2012<!--webbot bot="Timestamp" endspan i-checksum="31324" --></font></p>
|
||||
<!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B %Y" startspan -->21 September 2012<!--webbot bot="Timestamp" endspan i-checksum="39619" --></font></p>
|
||||
|
||||
|
||||
</body></html>
|
@ -1533,7 +1533,7 @@ $WHAT;.</p>
|
||||
</tr>
|
||||
</table>
|
||||
</blockquote>
|
||||
<pre><a name="filesystem_error-3-arg">filesystem_error</a>(const std::string& what_arg, const path_type& p1, error_code ec);</pre>
|
||||
<pre><a name="filesystem_error-3-arg">filesystem_error</a>(const std::string& what_arg, const path& p1, error_code ec);</pre>
|
||||
<blockquote>
|
||||
<p><i>Postcondition:</i></p>
|
||||
<table border="1" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="46%">
|
||||
@ -1561,7 +1561,7 @@ $WHAT;.</p>
|
||||
</tr>
|
||||
</table>
|
||||
</blockquote>
|
||||
<pre><a name="filesystem_error-4-arg">filesystem_error</a>(const std::string& what_arg, const path_type& p1, const path_type& p2, error_code ec);</pre>
|
||||
<pre><a name="filesystem_error-4-arg">filesystem_error</a>(const std::string& what_arg, const path& p1, const path& p2, error_code ec);</pre>
|
||||
<blockquote>
|
||||
<p><i>Postcondition:</i></p>
|
||||
<table border="1" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="46%">
|
||||
@ -1822,13 +1822,13 @@ and permissions of a file.</p>
|
||||
// <a href="#directory_entry-constructors">constructors</a> and destructor
|
||||
directory_entry();
|
||||
directory_entry(const directory_entry&);
|
||||
explicit directory_entry(const path_type& p, file_status st=file_status(),
|
||||
explicit directory_entry(const path& p, file_status st=file_status(),
|
||||
file_status symlink_st=file_status());
|
||||
~directory_entry();
|
||||
|
||||
// <a href="#directory_entry-modifiers">modifiers</a>
|
||||
directory_entry& operator=(const directory_entry&);
|
||||
void assign(const path_type& p, file_status st=file_status(),
|
||||
void assign(const path& p, file_status st=file_status(),
|
||||
file_status symlink_st=file_status());
|
||||
void replace_filename(const path& p, file_status st=file_status(),
|
||||
file_status symlink_st=file_status());
|
||||
@ -1848,7 +1848,7 @@ and permissions of a file.</p>
|
||||
bool operator> (const directory_entry& rhs);
|
||||
bool operator>=(const directory_entry& rhs);
|
||||
private:
|
||||
path_type m_path; // for exposition only
|
||||
path m_path; // for exposition only
|
||||
mutable file_status m_status; // for exposition only; stat()-like
|
||||
mutable file_status m_symlink_status; // for exposition only; lstat()-like
|
||||
};
|
||||
@ -1892,7 +1892,7 @@ systems that provide status as a by-product of directory iteration.</i></span></
|
||||
</tr>
|
||||
</table>
|
||||
</blockquote>
|
||||
<pre>explicit directory_entry(const path_type& p, file_status st=file_status(), file_status symlink_st=file_status());</pre>
|
||||
<pre>explicit directory_entry(const path& p, file_status st=file_status(), file_status symlink_st=file_status());</pre>
|
||||
<blockquote>
|
||||
<p><i>Postcondition:</i></p>
|
||||
<table border="1" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="36%">
|
||||
@ -1916,7 +1916,7 @@ systems that provide status as a by-product of directory iteration.</i></span></
|
||||
</blockquote>
|
||||
<h3> <a name="directory_entry-modifiers"> <code>directory_entry </code>modifiers</a>
|
||||
[directory_entry.mods]</h3>
|
||||
<pre>void assign(const path_type& p, file_status st=file_status(), file_status symlink_st=file_status());</pre>
|
||||
<pre>void assign(const path& p, file_status st=file_status(), file_status symlink_st=file_status());</pre>
|
||||
<blockquote>
|
||||
<p><i>Postcondition:</i></p>
|
||||
<table border="1" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="36%">
|
||||
|
Loading…
x
Reference in New Issue
Block a user