13 lines
220 B
C
13 lines
220 B
C
#ifndef PAYMENT_METHOD_H_INCLUDED
|
|
#define PAYMENT_METHOD_H_INCLUDED
|
|
|
|
enum PaymentMethod {
|
|
Undefined = 0xFF,
|
|
Progressive = 0x01,
|
|
Degressive = 0x02,
|
|
Linear = 0x03,
|
|
Steps = 0x04
|
|
};
|
|
|
|
#endif // PAYMENT_METHOD_H_INCLUDED
|