~verifypn-stub/verifypn/qr-metrics

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* 
 * File:   errorcodes.h
 * Author: Peter G. Jensen
 *
 * Created on 30 August 2016, 09:19
 */

#ifndef ERRORCODES_H
#define ERRORCODES_H

/** Enumeration of return values from VerifyPN */
enum ReturnValue {
    SuccessCode = 0,
    FailedCode = 1,
    UnknownCode = 2,
    ErrorCode = 3,
    ContinueCode = 4
};


#endif /* ERRORCODES_H */