libcruft-vk/event.hpp
2016-02-24 11:11:41 +11:00

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