LeviLamina
Loading...
Searching...
No Matches
StorageBuffer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace texd {
6
8public:
9 // StorageBuffer inner types declare
10 // clang-format off
11 class Implementation;
12 // clang-format on
13
14 // StorageBuffer inner types define
16 public:
17 // member variables
18 // NOLINTBEGIN
21 // NOLINTEND
22
23 public:
24 // prevent constructor by default
25 Implementation& operator=(Implementation const&);
28 };
29
30public:
31 // member variables
32 // NOLINTBEGIN
34 // NOLINTEND
35
36public:
37 // prevent constructor by default
38 StorageBuffer& operator=(StorageBuffer const&);
41};
42
43} // namespace texd
Definition StorageBuffer.h:15
Definition StorageBuffer.h:7
Definition Alias.h:14