dining-philosophers/include/philosopher-state.hpp

8 lines
85 B
C++

#pragma once
enum class PhilosopherState {
THINKING,
HUNGRY,
EATING,
};