This commit is contained in:
Gerhard Hoffmann 2023-12-12 12:10:55 +01:00
parent a80bc7294a
commit 08f8f3a9fd

View File

@ -1,14 +1,16 @@
#ifndef TARIFF_CUSTOMER_H_INCLUDED
#define TARIFF_CUSTOMER_H_INCLUDED
#ifndef TARIFF_CUSTOMER_TYPE_H_INCLUDED
#define TARIFF_CUSTOMER_TYPE_H_INCLUDED
#include <QString>
struct Customer {
Customer() = default;
struct CustomerType {
//enum class Customer;
int cust_id; // 1: Adult, 2: Child:
CustomerType() = default;
int cust_type; // 1: Adult, 2: Child:
QString cust_label;
};
#endif // TARIFF_CUSTOMER_H_INCLUDED