LeviLamina
Loading...
Searching...
No Matches
list_head.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct list_head {
6public:
7 // member variables
8 // NOLINTBEGIN
11 // NOLINTEND
12
13public:
14 // prevent constructor by default
15 list_head& operator=(list_head const&);
16 list_head(list_head const&);
17 list_head();
18};
Definition list_head.h:5
Definition Alias.h:14