summaryrefslogtreecommitdiffhomepage
path: root/Tobii EyeX/samples/ActivatableBoardGame/Observer.h
blob: 8aa98c16c2c0418c1026b24aba523ebc22a009bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * Observer interface: Standard Observer interface used for notifying an object of a change in another object.
 *
 * Copyright 2013 Tobii Technology AB. All rights reserved.
 */

#pragma once

class Observer
{
public:
	virtual void SubjectChanged() = 0;
};