mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
50 lines
1.1 KiB
C++
50 lines
1.1 KiB
C++
/*
|
|
* Copyright (c) 2009 Nokia Corporation.
|
|
*/
|
|
|
|
// INCLUDE FILES
|
|
#include "ZXingBarcodeReaderAppUi.h"
|
|
#include "ZXingBarcodeReaderDocument.h"
|
|
|
|
// ============================ MEMBER FUNCTIONS ===============================
|
|
|
|
CZXingBarcodeReaderDocument* CZXingBarcodeReaderDocument::NewL (
|
|
CEikApplication& aApp )
|
|
{
|
|
CZXingBarcodeReaderDocument* self = NewLC (aApp );
|
|
CleanupStack::Pop (self );
|
|
return self;
|
|
}
|
|
|
|
CZXingBarcodeReaderDocument* CZXingBarcodeReaderDocument::NewLC (
|
|
CEikApplication& aApp )
|
|
{
|
|
CZXingBarcodeReaderDocument* self =
|
|
new (ELeave) CZXingBarcodeReaderDocument (aApp );
|
|
|
|
CleanupStack::PushL (self );
|
|
self->ConstructL ();
|
|
return self;
|
|
}
|
|
|
|
void CZXingBarcodeReaderDocument::ConstructL ()
|
|
{
|
|
}
|
|
|
|
CZXingBarcodeReaderDocument::CZXingBarcodeReaderDocument (
|
|
CEikApplication& aApp ) :
|
|
CAknDocument (aApp )
|
|
{
|
|
}
|
|
|
|
CZXingBarcodeReaderDocument::~CZXingBarcodeReaderDocument ()
|
|
{
|
|
}
|
|
|
|
CEikAppUi* CZXingBarcodeReaderDocument::CreateAppUiL ()
|
|
{
|
|
return new (ELeave) CZXingBarcodeReaderAppUi;
|
|
}
|
|
|
|
// End of File
|