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
22#ifdef LL_PLAT_S
23public:
24 // prevent constructor by default
25 Frame& operator=(Frame const&);
26 Frame(Frame const&);
27 Frame();
28
29#else // LL_PLAT_C
30public:
31 // prevent constructor by default
32 Frame(Frame const&);
33 Frame();
34
35#endif
36public:
37 // member functions
38 // NOLINTBEGIN
39#ifdef LL_PLAT_C
40 MCNAPI ::gif::Frame& operator=(::gif::Frame const&);
41
42 MCNAPI ~Frame();
43#endif
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49#ifdef LL_PLAT_C
50 MCNAPI void $dtor();
51#endif
52 // NOLINTEND
53};
54
55} // namespace gif
Definition Frame.h:7
Definition Alias.h:14