LeviLamina
Loading...
Searching...
No Matches
Frame.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace gif {
6
7struct Frame {
8public:
9 // member variables
10 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 Frame& operator=(Frame const&);
25 Frame(Frame const&);
26 Frame();
27
28public:
29 // member functions
30 // NOLINTBEGIN
31
32 // NOLINTEND
33
34public:
35 // destructor thunk
36 // NOLINTBEGIN
37 MCNAPI_C void $dtor();
38 // NOLINTEND
39};
40
41} // namespace gif
Definition Alias.h:14