LeviLamina
Loading...
Searching...
No Matches
ProfileSectionGroup.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Core::Profile {
6
7class ProfileSectionGroup {
8public:
9 // member variables
10 // NOLINTBEGIN
14 // NOLINTEND
15
16public:
17 // prevent constructor by default
18 ProfileSectionGroup& operator=(ProfileSectionGroup const&);
19 ProfileSectionGroup(ProfileSectionGroup const&);
20 ProfileSectionGroup();
21};
22
23} // namespace Core::Profile
Definition Alias.h:14