Network/SocketPoller: Fix missing documentation

Former-commit-id: c6670596bcf9faba08d59c1e90c0596eccbabfd6 [formerly 2a358094943cd9a7971af9ae53c0d1adec34fdf8] [formerly 079909ff9f2cd7bf529eef1537b00f698a880c5f [formerly 989fe6aa5a78ae9c37e7e161ae5895b620cb8d0b]]
Former-commit-id: 244c8405aeb61eefdaf47390d059d40a004e48b1 [formerly 7989e0ee5e6fee6b5ecf8e861fcd926c38ced8a2]
Former-commit-id: 177e32b55a11dce2936de0e92a4d8a264a30ada4
This commit is contained in:
Lynix 2016-09-25 03:45:07 +02:00
parent 25afa30187
commit c087d916a1
1 changed files with 9 additions and 1 deletions

View File

@ -17,7 +17,13 @@
namespace Nz
{
/*!
* \brief Constructs a SocketPoller object by default
* \ingroup network
* \class Nz::SocketPoller
* \brief Network class allowing an application to wait on multiples sockets for them to become active (readable)
*/
/*!
* \brief Constructs an empty SocketPoller object
*/
inline SocketPoller::SocketPoller() :
m_impl(new SocketPollerImpl)
@ -26,6 +32,8 @@ namespace Nz
/*!
* \brief Destructs the SocketPoller
*
* \remark When the SocketPoller gets destroyed, all sockets are automatically unregistered from it.
*/
SocketPoller::~SocketPoller()
{