Skip to content

Commit

Permalink
Add definition for Observer constructor.
Browse files Browse the repository at this point in the history
  • Loading branch information
BartVandewoestyne committed Feb 12, 2024
1 parent bee63dd commit b5146f1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions Behavioral_Patterns/Observer/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
set(observer_SRCS
ClockTimer.cpp
DigitalClock.cpp
Observer.cpp
Subject.cpp)

add_library(observer SHARED ${observer_SRCS})
Expand Down
4 changes: 4 additions & 0 deletions Behavioral_Patterns/Observer/Observer.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#include "Observer.h"

Observer::Observer()
{}

0 comments on commit b5146f1

Please sign in to comment.