moved all return values to DH IF
This commit is contained in:
@ -9,19 +9,13 @@
|
||||
typedef uint16_t ReturnValue_t;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
class HasReturnvaluesIF {
|
||||
public:
|
||||
static const ReturnValue_t RETURN_OK = 0;
|
||||
static const ReturnValue_t RETURN_FAILED = 1;
|
||||
static const ReturnValue_t RETURN_FAILED = 0xFFFF;
|
||||
virtual ~HasReturnvaluesIF() {
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
||||
#endif /* HASRETURNVALUESIF_H_ */
|
||||
|
Reference in New Issue
Block a user