📄 tcpsocketdocument.cpp
字号:
/*
* ============================================================================
* Name : CTcpSocketDocument from TcpSocketDocument.h
* Part of : TcpSocket
* Created : 06.03.2006 by ToBeReplacedByAuthor
* Implementation notes:
* Initial content was generated by Series 60 Application Wizard.
* Version :
* Copyright: ToBeReplacedByCopyright
* ============================================================================
*/
// INCLUDE FILES
#include "TcpSocketDocument.h"
#include "TcpSocketAppui.h"
// ================= MEMBER FUNCTIONS =======================
// constructor
CTcpSocketDocument::CTcpSocketDocument(CEikApplication& aApp)
: CAknDocument(aApp)
{
}
// destructor
CTcpSocketDocument::~CTcpSocketDocument()
{
}
// EPOC default constructor can leave.
void CTcpSocketDocument::ConstructL()
{
}
// Two-phased constructor.
CTcpSocketDocument* CTcpSocketDocument::NewL(
CEikApplication& aApp) // CTcpSocketApp reference
{
CTcpSocketDocument* self = new (ELeave) CTcpSocketDocument( aApp );
CleanupStack::PushL( self );
self->ConstructL();
CleanupStack::Pop();
return self;
}
// ----------------------------------------------------
// CTcpSocketDocument::CreateAppUiL()
// constructs CTcpSocketAppUi
// ----------------------------------------------------
//
CEikAppUi* CTcpSocketDocument::CreateAppUiL()
{
return new (ELeave) CTcpSocketAppUi;
}
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -