1#pragma once
2
3#include <nn/gfx/detail/gfx_DataContainer.h>
4#include <nn/gfx/gfx_QueueInfoData.h>
5
6namespace nn::gfx {
7
8class QueueInfo : public detail::DataContainer<QueueInfoData> {
9public:
10 QueueInfo();
11 void SetDefault();
12 void SetCapability(int);
13 int GetCapability() const;
14};
15
16} // namespace nn::gfx