summaryrefslogtreecommitdiff
path: root/sales_data.hpp
diff options
context:
space:
mode:
authorOskar <[email protected]>2024-08-03 22:51:15 +0200
committerOskar <[email protected]>2024-08-03 22:51:15 +0200
commit1d105b91b9678ffaa8eddea2218ed1789f5be27c (patch)
tree89563fd6bcbe5411b244ac361098fbdddc321f5f /sales_data.hpp
parent0de72ab100011ab54f99f298e936327011ebc706 (diff)
more assignments
Diffstat (limited to 'sales_data.hpp')
-rw-r--r--sales_data.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/sales_data.hpp b/sales_data.hpp
new file mode 100644
index 0000000..cce4469
--- /dev/null
+++ b/sales_data.hpp
@@ -0,0 +1,10 @@
+#ifndef SALES_DATA_H
+#define SALES_DATA_H
+#include <string>
+struct SalesData {
+ std::string BookNo;
+ unsigned int UnitsSold = 0;
+ double Revenue = 0.0;
+};
+
+#endif