Add drafts for 3 new haeder files.
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user