mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
19 lines
345 B
C++
19 lines
345 B
C++
/*
|
|
* Copyright (c) 2009 Nokia Corporation.
|
|
*/
|
|
|
|
// INCLUDE FILES
|
|
#include <eikstart.h>
|
|
#include "ZXingBarcodeReaderApplication.h"
|
|
|
|
LOCAL_C CApaApplication* NewApplication ()
|
|
{
|
|
return new CZXingBarcodeReaderApplication;
|
|
}
|
|
|
|
GLDEF_C TInt E32Main ()
|
|
{
|
|
return EikStart::RunApplication (NewApplication );
|
|
}
|
|
|