Add drafts for 3 new haeder files.

This commit is contained in:
2023-12-12 12:14:14 +01:00
parent 2b3ee3f384
commit d6324f03a8
3 changed files with 29 additions and 16 deletions

View File

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