LeviLamina
Loading...
Searching...
No Matches
Container.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Editor::DataStore {
6
7class Container {
8public:
9 // member variables
10 // NOLINTBEGIN
14 // NOLINTEND
15
16public:
17 // prevent constructor by default
18 Container& operator=(Container const&);
19 Container(Container const&);
20 Container();
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 // vIndex: 0
26 virtual ~Container() = default;
27
28 // vIndex: 1
29 virtual void clear() = 0;
30 // NOLINTEND
31
32public:
33 // destructor thunk
34 // NOLINTBEGIN
35
36 // NOLINTEND
37
38public:
39 // virtual function thunks
40 // NOLINTBEGIN
41
42 // NOLINTEND
43};
44
45} // namespace Editor::DataStore
Definition Container.h:7
Definition Alias.h:14