struct Core::Platform::ISocketIDSet

#include <coreplatformsocket.h>

struct ISocketIDSet
{
    // methods

    virtual void set(SocketID index) = 0;
    virtual void clear(SocketID index) = 0;
    virtual bool isSet(SocketID index) = 0;
    virtual void zero() = 0;
};

// direct descendants

class PosixSocketIDSet;