17 lines
335 B
C++
17 lines
335 B
C++
/*
|
|
File: Observer.h
|
|
Description: Declares the Observer interface for handling notifications in the Vehicle Service Management System.
|
|
Author: Trenser
|
|
Date: 19-May-2026
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
class Notification;
|
|
|
|
class Observer
|
|
{
|
|
public:
|
|
virtual ~Observer() = default;
|
|
virtual void addNotification(Notification* notification) = 0;
|
|
}; |