Today's the day. Renamed platform to framework.
This commit is contained in:
35
tmtcservices/VerificationCodes.h
Normal file
35
tmtcservices/VerificationCodes.h
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* VerificationCodes.h
|
||||
*
|
||||
* Created on: Aug 8, 2012
|
||||
* Author: baetz
|
||||
*/
|
||||
|
||||
#ifndef VERIFICATIONCODES_H_
|
||||
#define VERIFICATIONCODES_H_
|
||||
|
||||
namespace TC_VERIFY {
|
||||
|
||||
enum verification_flags {
|
||||
NONE = 0b0000,
|
||||
ACCEPTANCE = 0b0001,
|
||||
START = 0b0010,
|
||||
PROGRESS = 0b0100,
|
||||
COMPLETION = 0b1000
|
||||
};
|
||||
|
||||
enum subservice_ids {
|
||||
NOTHING_TO_REPORT = 0,
|
||||
ACCEPTANCE_SUCCESS = 1,
|
||||
ACCEPTANCE_FAILURE = 2,
|
||||
START_SUCCESS = 3,
|
||||
START_FAILURE = 4,
|
||||
PROGRESS_SUCCESS = 5,
|
||||
PROGRESS_FAILURE = 6,
|
||||
COMPLETION_SUCCESS = 7,
|
||||
COMPLETION_FAILURE = 8,
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif /* VERIFICATIONCODES_H_ */
|
Reference in New Issue
Block a user