You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
124 B
C++
12 lines
124 B
C++
7 months ago
|
#include "StdAfx.h"
|
||
|
#include "Observer.h"
|
||
|
|
||
|
|
||
|
CObserver::CObserver(void)
|
||
|
{
|
||
|
m_Val1 = 0;
|
||
|
}
|
||
|
CObserver::~CObserver(void)
|
||
|
{
|
||
|
}
|