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 virtual ~Container() = default;
26
27 virtual void clear() = 0;
28 // NOLINTEND
29
30public:
31 // virtual function thunks
32 // NOLINTBEGIN
33
34 // NOLINTEND
35};
36
37} // namespace Editor::DataStore
Definition Alias.h:14