18 lines
433 B
C++
18 lines
433 B
C++
#include "stdafx.h"
|
|
//
|
|
#include "Manipulater.h"
|
|
//
|
|
|
|
using namespace util;
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
static void Manipulater_BaseFuntionByModule()
|
|
{
|
|
ObjectPoolRouter::Instance()->InitializeByPoolInfo(NULL);
|
|
if(!Manipulater::ms_pInstance)
|
|
Manipulater::ms_pInstance = new Manipulater();
|
|
};
|
|
|
|
REGISTER_STEP_HANDLER(eWISE_ROUTINES_INIT_DATA_CENTER, Manipulater_BaseFuntionByModule);
|
|
|