socketsapplication.cpp

来自「NOKIA手机的基于C++的socket完整的开发API,非常好用」· C++ 代码 · 共 22 行

CPP
22
字号
/* Copyright (c) 2001, Nokia Mobile Phones. All rights reserved */

#include "SocketsDocument.h"
#include "SocketsApplication.h"

// local constants
static const TUid KUidSocketsApp = {0x10005B78};

CApaDocument* CSocketsApplication::CreateDocumentL()
    {  
    // Create an Sockets document, and return a pointer to it
    CApaDocument* document = CSocketsDocument::NewL(*this);
    return document;
    }

TUid CSocketsApplication::AppDllUid() const
    {
    // Return the UID for the Sockets application
    return KUidSocketsApp;
    }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?