18 lines
215 B
C++
18 lines
215 B
C++
|
|
#include "StdAfx.h"
|
||
|
|
#include "GlobalValue.h"
|
||
|
|
|
||
|
|
#ifdef _DEBUG
|
||
|
|
#define new DEBUG_NEW
|
||
|
|
#endif
|
||
|
|
|
||
|
|
CGlobalValue g_GlobalValue;
|
||
|
|
|
||
|
|
CGlobalValue::CGlobalValue(void)
|
||
|
|
{
|
||
|
|
m_pCurView = NULL;
|
||
|
|
}
|
||
|
|
|
||
|
|
CGlobalValue::~CGlobalValue(void)
|
||
|
|
{
|
||
|
|
}
|