14 lines
198 B
C++
14 lines
198 B
C++
|
#ifndef __VK_SEMAPHORE_HPP
|
||
|
#define __VK_SEMAPHORE_HPP
|
||
|
|
||
|
#include "./object.hpp"
|
||
|
#include "./fwd.hpp"
|
||
|
|
||
|
namespace vk {
|
||
|
struct semaphore : public owned<semaphore,device> {
|
||
|
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|