readbarcapplication.cpp

来自「barcode readers [ from Image]」· C++ 代码 · 共 22 行

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

#include "SnapShotDocument.h"
#include "SnapShotApplication.h"

// local constants
static const TUid KUidSnapShotApp = {0x10005B89};

CApaDocument* CSnapShotApplication::CreateDocumentL()
    {  
    // Create an SnapShot document, and return a pointer to it
    CApaDocument* document = CSnapShotDocument::NewL(*this);
    return document;
    }

TUid CSnapShotApplication::AppDllUid() const
    {
    // Return the UID for the SnapShot application
    return KUidSnapShotApp;
    }

⌨️ 快捷键说明

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