Restructure repository to include all source folders
Move git root from Client/ to src/ to track all source code: - Client: Game client source (moved to Client/Client/) - Server: Game server source - GameTools: Development tools - CryptoSource: Encryption utilities - database: Database scripts - Script: Game scripts - rylCoder_16.02.2008_src: Legacy coder tools - GMFont, Game: Additional resources 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
80
Server/AdminTool/AdminToolClient/UserInfoDoc.cpp
Normal file
80
Server/AdminTool/AdminToolClient/UserInfoDoc.cpp
Normal file
@@ -0,0 +1,80 @@
|
||||
// UserInfoDoc.cpp : <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
|
||||
//
|
||||
|
||||
#include "stdafx.h"
|
||||
#include "AdminToolClient.h"
|
||||
#include "UserInfoDoc.h"
|
||||
#include "UserCharTreeView.h"
|
||||
|
||||
|
||||
// CUserInfoDoc
|
||||
|
||||
IMPLEMENT_DYNCREATE(CUserInfoDoc, CDocument)
|
||||
|
||||
CUserInfoDoc::CUserInfoDoc() : m_lpUserInfo( NULL )
|
||||
{
|
||||
}
|
||||
|
||||
BOOL CUserInfoDoc::OnNewDocument()
|
||||
{
|
||||
if (!CDocument::OnNewDocument())
|
||||
return FALSE;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
CUserInfoDoc::~CUserInfoDoc()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
BEGIN_MESSAGE_MAP(CUserInfoDoc, CDocument)
|
||||
END_MESSAGE_MAP()
|
||||
|
||||
|
||||
// CUserInfoDoc <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
|
||||
|
||||
#ifdef _DEBUG
|
||||
void CUserInfoDoc::AssertValid() const
|
||||
{
|
||||
CDocument::AssertValid();
|
||||
}
|
||||
|
||||
void CUserInfoDoc::Dump(CDumpContext& dc) const
|
||||
{
|
||||
CDocument::Dump(dc);
|
||||
}
|
||||
#endif //_DEBUG
|
||||
|
||||
|
||||
// CUserInfoDoc serialization<6F>Դϴ<D4B4>.
|
||||
|
||||
void CUserInfoDoc::Serialize(CArchive& ar)
|
||||
{
|
||||
if (ar.IsStoring())
|
||||
{
|
||||
// TODO: <20><><EFBFBD> <20><><EFBFBD><EFBFBD> <20>ڵ带 <20>߰<EFBFBD><DFB0>մϴ<D5B4>.
|
||||
}
|
||||
else
|
||||
{
|
||||
// TODO: <20><><EFBFBD> <20>ε<EFBFBD> <20>ڵ带 <20>߰<EFBFBD><DFB0>մϴ<D5B4>.
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// CUserInfoDoc <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
|
||||
|
||||
void CUserInfoDoc::SetUserInfo(CCharacterDoc::CharDocInfo* Doc)
|
||||
{
|
||||
m_lpUserInfo = Doc;
|
||||
m_lpUserInfo->m_ModifyDocument = this;
|
||||
|
||||
CUserCharTreeView *pView;
|
||||
POSITION pos;
|
||||
|
||||
pos = GetFirstViewPosition();
|
||||
pView = static_cast<CUserCharTreeView*>(GetNextView(pos));
|
||||
|
||||
pView->UserCharTreeSet(); // Ʈ<><C6AE> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
|
||||
|
||||
pView->Invalidate(FALSE);
|
||||
}
|
||||
Reference in New Issue
Block a user