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