TaskStatus.hpp
Go to the documentation of this file.
1 // Copyright (c) 2019 Chris Ohk, Youngjoong Kim, SeungHyun Jeon
2 
3 // We are making my contributions/submissions to this project solely in our
4 // personal capacity and are not conveying any rights to any intellectual
5 // property of any third parties.
6 
7 #ifndef ROSETTASTONE_TASK_STATUS_HPP
8 #define ROSETTASTONE_TASK_STATUS_HPP
9 
10 namespace RosettaStone
11 {
12 using status_t = unsigned int;
13 
15 enum class TaskStatus : status_t
16 {
17  INVALID,
18  STOP,
19  COMPLETE,
20 
22 };
23 } // namespace RosettaStone
24 
25 #endif // ROSETTASTONE_TASK_STATUS_HPP
TaskStatus
Meta data to represent the result of the task.
Definition: TaskStatus.hpp:15
unsigned int status_t
Definition: TaskStatus.hpp:12
int
Definition: CardEnums.hpp:26
Definition: AccountInfo.hpp:14