LeviLamina
Loading...
Searching...
No Matches
StatePublisher.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // StatePublisher inner types define
8 enum class State : int {
9 NotReady = 0,
10 InProgress = 1,
11 Ready = 2,
12 FailedAndLongDelayRetryDesired = 3,
13 };
14
15public:
16 // member variables
17 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 StatePublisher& operator=(StatePublisher const&);
27};
Definition StatePublisher.h:5
Definition Alias.h:14