Add explicit include guard.
This commit is contained in:
parent
b1a98a20c5
commit
a53cb37291
@ -1,10 +1,12 @@
|
||||
#pragma once
|
||||
|
||||
enum PaymentMethod
|
||||
{
|
||||
Undefined = 0xFF,
|
||||
Progressive = 0x01,
|
||||
Degressive = 0x02,
|
||||
Linear = 0x03,
|
||||
Steps = 0x04
|
||||
};
|
||||
#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
|
||||
|
Loading…
Reference in New Issue
Block a user