17 lines
287 B
C++
17 lines
287 B
C++
|
#ifndef __VK_EVENT_HPP
|
||
|
#define __VK_EVENT_HPP
|
||
|
|
||
|
#include "./object.hpp"
|
||
|
#include "./fwd.hpp"
|
||
|
|
||
|
namespace vk {
|
||
|
struct event : public owned<event,device> {
|
||
|
bool is_set (const device&) const;
|
||
|
|
||
|
void set (const device&);
|
||
|
void reset (const device&);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|