From 40f5a317e118a48c931df5ffd9d7a8184de16e4d Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Thu, 30 Nov 2023 20:25:09 -0500 Subject: [PATCH] adding polymorphism --- hws/10_instagram_notifications/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hws/10_instagram_notifications/README.md b/hws/10_instagram_notifications/README.md index 395b9eb..3cee562 100644 --- a/hws/10_instagram_notifications/README.md +++ b/hws/10_instagram_notifications/README.md @@ -1,6 +1,6 @@ # Homework 10 — Instagram Notifications -In this assignment you will develop a program to deliver notifications to users like Instagram does, let's call this program New York Notifications. Please read the entire handout before starting to code the assignment. As the main learning objective of this assignment is to practice using the C++ inheritance, in this assignment, we explicitly require you to define a class called Notification, and use this class as the base class to derive classes for various types of notifications. +In this assignment you will develop a program to deliver notifications to users like Instagram does, let's call this program New York Notifications. Please read the entire handout before starting to code the assignment. As the main learning objective of this assignment is to practice using the C++ inheritance and polymorphism, in this assignment, we explicitly require you to define a class called Notification, and use this class as the base class to derive classes for various types of notifications. ## Learning Objectives