From 0ef8b3a2f261b6685da7603c18aa9bea129fec31 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Wed, 24 Jan 2024 21:48:36 -0600 Subject: [PATCH] branch2.cpp --- src/branch2.hpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/branch2.hpp diff --git a/src/branch2.hpp b/src/branch2.hpp new file mode 100644 index 00000000..f95508d2 --- /dev/null +++ b/src/branch2.hpp @@ -0,0 +1,13 @@ +class Branch2 +{ +public: + enum class + { + RO, + RW, + NC + }; + +public: + bool enabled; +};