Minor: replaced 'pragma once' with include guards.

This commit is contained in:
Gerhard Hoffmann 2024-02-15 16:07:04 +01:00
parent 003644f04d
commit db0a2c0d01

View File

@ -1,4 +1,5 @@
#pragma once
#ifndef PAYMENT_RATE_INCLUDED_H
#define PAYMENT_RATE_INCLUDED_H
class ATBPaymentRate
{
@ -6,4 +7,6 @@ public:
int pra_payment_option_id;
int pra_payment_unit_id;
double pra_price;
};
};
#endif // PAYMENT_RATE_INCLUDED_H