aboutsummaryrefslogtreecommitdiff
path: root/Observer.cpp
blob: 1d96ed4438355df5b6fc550643e6e39eb6f838aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "Observer.h"
#include <iostream>

void Observer::update(){
	std::cout << 'a' << std::endl;
}

void Subject::attach(Observer* obs){
	std::cout << "added" << std::endl;
	this->observers.push_back(obs);
}

void Subject::detach(Observer*){

}

// TODO possibly add foo input as update value?
void Subject::notify() {
	for (int i = 0; i < this->observers.size(); i++)
		this->observers[i]->update();
}