Add DeliveryAssignment class definition

This commit is contained in:
Joel Thomas
2026-02-18 18:56:11 +05:30
parent 22a146a560
commit 549ff26481
2 changed files with 16 additions and 1 deletions
@@ -1 +1,16 @@
/*
Author: Joel Mathew Thomas
Date: 18-02-2026
*/
#include "DeliveryAssignment.h"
int DeliveryAssignment::getId() const
{
return m_id;
}
Order& DeliveryAssignment::getOrder()
{
return m_order;
}
@@ -27,6 +27,6 @@ public:
{}
int getId() const;
DeliveryStatus getStatus() const;
Order* getOrder();
Order& getOrder();
};