danicoin/src/System/Event.h

33 lines
621 B
C
Raw Normal View History

// Copyright (c) 2011-2016 The Cryptonote developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
2014-09-15 10:48:45 +00:00
#pragma once
namespace System {
class Dispatcher;
2014-09-15 10:48:45 +00:00
class Event {
public:
Event();
explicit Event(Dispatcher& dispatcher);
2014-09-15 10:48:45 +00:00
Event(const Event&) = delete;
Event(Event&& other);
~Event();
Event& operator=(const Event&) = delete;
Event& operator=(Event&& other);
bool get() const;
void clear();
void set();
void wait();
private:
Dispatcher* dispatcher;
2015-05-27 12:08:46 +00:00
bool state;
void* first;
void* last;
2014-09-15 10:48:45 +00:00
};
}