Add explicit include guard.

This commit is contained in:
Gerhard Hoffmann 2023-11-26 19:50:23 +01:00
parent b1a98a20c5
commit a53cb37291

View File

@ -1,10 +1,12 @@
#pragma once #ifndef PAYMENT_METHOD_H_INCLUDED
#define PAYMENT_METHOD_H_INCLUDED
enum PaymentMethod
{ enum PaymentMethod {
Undefined = 0xFF, Undefined = 0xFF,
Progressive = 0x01, Progressive = 0x01,
Degressive = 0x02, Degressive = 0x02,
Linear = 0x03, Linear = 0x03,
Steps = 0x04 Steps = 0x04
}; };
#endif // PAYMENT_METHOD_H_INCLUDED