⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 btobjectexchangeapplication.cpp

📁 This C++ code example provides a method for transferring objects or chunks of data from one device
💻 CPP
字号:
/* Copyright (c) 2004, Nokia. All rights reserved */


// INCLUDE FILES
#include "BTObjectExchangeDocument.h"
#include "BTObjectExchangeApplication.h"
#include "ObjectExchangeProtocolConstants.h"

// ============================ MEMBER FUNCTIONS ===============================

// -----------------------------------------------------------------------------
// CBTObjectExchangeApplication::CreateDocumentL()
// Create an BTObjectExchange document, and return a pointer to it.
// -----------------------------------------------------------------------------
//
CApaDocument* CBTObjectExchangeApplication::CreateDocumentL()
    {  
    CApaDocument* document = CBTObjectExchangeDocument::NewL( *this );
    return document;
    }

// -----------------------------------------------------------------------------
// CBTDiscoveryApplication::AppDllUid()
// Return the UID for the BTObjectExchange application.
// -----------------------------------------------------------------------------
//
TUid CBTObjectExchangeApplication::AppDllUid() const
    {
    return KUidBTObjectExchangeApp;
    }

// End of File

⌨️ 快捷键说明

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