git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27191
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
bool IsOk() const { return m_fds[Read] != INVALID_FD; }
// return the descriptor for one of the pipe ends
bool IsOk() const { return m_fds[Read] != INVALID_FD; }
// return the descriptor for one of the pipe ends
- int operator[](Direction which) const
- {
- wxASSERT_MSG( which >= 0 && (size_t)which < WXSIZEOF(m_fds),
- _T("invalid pipe index") );
-
- return m_fds[which];
- }
+ int operator[](Direction which) const { return m_fds[which]; }
// detach a descriptor, meaning that the pipe dtor won't close it, and
// return it
int Detach(Direction which)
{
// detach a descriptor, meaning that the pipe dtor won't close it, and
// return it
int Detach(Direction which)
{
- wxASSERT_MSG( which >= 0 && (size_t)which < WXSIZEOF(m_fds),
- _T("invalid pipe index") );
-
int fd = m_fds[which];
m_fds[which] = INVALID_FD;
int fd = m_fds[which];
m_fds[which] = INVALID_FD;
~wxPipe() { Close(); }
private:
~wxPipe() { Close(); }
private:
+ int m_fds[Direction_Max];