Qt 4.8
Public Types | Public Functions | Public Variables | List of all members
QSockNotType Class Reference

#include <qeventdispatcher_unix_p.h>

Public Types

typedef QPodList< QSockNot *, 32 > List
 

Public Functions

 QSockNotType ()
 
 ~QSockNotType ()
 

Public Variables

fd_set enabled_fds
 
List list
 
fd_set pending_fds
 
fd_set select_fds
 

Detailed Description

Definition at line 123 of file qeventdispatcher_unix_p.h.

Typedefs

◆ List

Definition at line 129 of file qeventdispatcher_unix_p.h.

Constructors and Destructors

◆ QSockNotType()

QSockNotType::QSockNotType ( )

Definition at line 724 of file qeventdispatcher_unix.cpp.

725 {
726  FD_ZERO(&select_fds);
727  FD_ZERO(&enabled_fds);
728  FD_ZERO(&pending_fds);
729 }

◆ ~QSockNotType()

QSockNotType::~QSockNotType ( )

Definition at line 731 of file qeventdispatcher_unix.cpp.

732 {
733  for (int i = 0; i < list.size(); ++i)
734  delete list[i];
735 }
int size() const

Properties

◆ enabled_fds

fd_set QSockNotType::enabled_fds

Definition at line 133 of file qeventdispatcher_unix_p.h.

Referenced by QEventDispatcherUNIXPrivate::doSelect().

◆ list

List QSockNotType::list

Definition at line 131 of file qeventdispatcher_unix_p.h.

Referenced by QEventDispatcherUNIXPrivate::doSelect().

◆ pending_fds

fd_set QSockNotType::pending_fds

Definition at line 134 of file qeventdispatcher_unix_p.h.

◆ select_fds

fd_set QSockNotType::select_fds

Definition at line 132 of file qeventdispatcher_unix_p.h.

Referenced by QEventDispatcherUNIXPrivate::doSelect().


The documentation for this class was generated from the following files: