Ignore:
Timestamp:
12/15/22 15:56:11 (17 months ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
Phase:
public
Message:

Event object creation is moved into a factory.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/hu/varadiistvan/scpl/io/_win32/WaitableEvent.h

    r7 r28  
    4141 * An event which can be waited for.
    4242 */
    43 class WaitableEvent : public Event, public EventFailable
     43class WaitableEvent : public EventFailable, public Event
    4444{
    4545public:
     
    6161
    6262inline WaitableEvent::WaitableEvent(Waiter* waiter) :
     63    EventFailable(std::make_unique<EventFactory>()),
    6364    Event(static_cast<EventFailable&>(*this))
    6465{
Note: See TracChangeset for help on using the changeset viewer.