void UserThreadManager::setUpThread(gcRefPtr<UserCore::Thread::MCFThreadI> thread)
{
	auto um = m_pUserCore->getUploadManager();

	thread->setThreadManager(gcRefPtr<UserThreadManager>(this));
	thread->setUpLoadManager(um);
	thread->setWebCore(m_pUserCore->getWebCore());
	thread->setUserCore(m_pUserCore);
}
void UserThreadManager::setUpThread(gcRefPtr<UserCore::Thread::UserThreadI> thread)
{
	thread->setThreadManager(gcRefPtr<UserThreadManager>(this));
	thread->setWebCore(m_pUserCore->getWebCore());
	thread->setUserCore(m_pUserCore);
}