Skip to content

Instantly share code, notes, and snippets.

View BeautyfullCastle's full-sized avatar
🐍

Hyunsoo Kim BeautyfullCastle

🐍
View GitHub Profile
@BeautyfullCastle
BeautyfullCastle / Observer.cpp
Created January 8, 2022 08:10
C++ Observer Pattern Example (Easy and simple to understand)
#include "Observer.h"
Observer::Observer() : function(nullptr)
{
}
Observer::~Observer()
{
function = nullptr;
}