2010-05-03 17:24:11 -07:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2009 Nokia Corporation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CAMERAWRAPPEREXAMPLEAPPLICATION_H__
|
|
|
|
#define __CAMERAWRAPPEREXAMPLEAPPLICATION_H__
|
|
|
|
|
|
|
|
// INCLUDES
|
|
|
|
#include <aknapp.h>
|
2010-05-04 16:28:04 -07:00
|
|
|
#include "ZXingBarcodeReader.hrh"
|
2010-05-03 17:24:11 -07:00
|
|
|
|
|
|
|
// UID for the application;
|
|
|
|
// this should correspond to the uid defined in the mmp file
|
|
|
|
const TUid KUidCameraWrapperExampleApp =
|
|
|
|
{
|
|
|
|
_UID3
|
|
|
|
};
|
|
|
|
|
|
|
|
// CLASS DECLARATION
|
|
|
|
|
2010-05-04 16:28:04 -07:00
|
|
|
class CZXingBarcodeReaderApplication : public CAknApplication
|
2010-05-03 17:24:11 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// Functions from base classes
|
|
|
|
TUid AppDllUid () const;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// Functions from base classes
|
|
|
|
CApaDocument* CreateDocumentL ();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __CAMERAWRAPPEREXAMPLEAPPLICATION_H__
|
|
|
|
|
|
|
|
// End of File
|