14 lines
160 B
C
14 lines
160 B
C
|
#ifndef OBSERVER_H_
|
||
|
#define OBSERVER_H_
|
||
|
|
||
|
#include "Coord.h"
|
||
|
|
||
|
class Observer {
|
||
|
public:
|
||
|
Observer(void);
|
||
|
virtual ~Observer(void);
|
||
|
};
|
||
|
|
||
|
#endif
|
||
|
|