io: add dup instance method to fd
This commit is contained in:
parent
1b118ff377
commit
798d3aac5a
8
io.cpp
8
io.cpp
@ -166,6 +166,14 @@ fd::~fd () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
fd
|
||||||
|
fd::dup (void) const
|
||||||
|
{
|
||||||
|
return dup (m_fd);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
fd
|
fd
|
||||||
fd::dup (int _fd)
|
fd::dup (int _fd)
|
||||||
|
1
io.hpp
1
io.hpp
@ -47,6 +47,7 @@ namespace util {
|
|||||||
fd (const char *path, int flags, mode_t mode = 0660);
|
fd (const char *path, int flags, mode_t mode = 0660);
|
||||||
fd (const boost::filesystem::path&, int flags);
|
fd (const boost::filesystem::path&, int flags);
|
||||||
|
|
||||||
|
fd dup (void) const;
|
||||||
static fd dup (int);
|
static fd dup (int);
|
||||||
|
|
||||||
~fd ();
|
~fd ();
|
||||||
|
Loading…
Reference in New Issue
Block a user