mirror of
https://github.com/zxing/zxing.git
synced 2025-02-21 02:55:27 -08:00
35 lines
748 B
C
35 lines
748 B
C
|
/*
|
||
|
* Copyright (c) 2009 Nokia Corporation.
|
||
|
*/
|
||
|
|
||
|
#ifndef __CAMERAWRAPPEREXAMPLEAPPLICATION_H__
|
||
|
#define __CAMERAWRAPPEREXAMPLEAPPLICATION_H__
|
||
|
|
||
|
// INCLUDES
|
||
|
#include <aknapp.h>
|
||
|
#include "CameraWrapperExample.hrh"
|
||
|
|
||
|
// UID for the application;
|
||
|
// this should correspond to the uid defined in the mmp file
|
||
|
const TUid KUidCameraWrapperExampleApp =
|
||
|
{
|
||
|
_UID3
|
||
|
};
|
||
|
|
||
|
// CLASS DECLARATION
|
||
|
|
||
|
class CCameraWrapperExampleApplication : public CAknApplication
|
||
|
{
|
||
|
public:
|
||
|
// Functions from base classes
|
||
|
TUid AppDllUid () const;
|
||
|
|
||
|
protected:
|
||
|
// Functions from base classes
|
||
|
CApaDocument* CreateDocumentL ();
|
||
|
};
|
||
|
|
||
|
#endif // __CAMERAWRAPPEREXAMPLEAPPLICATION_H__
|
||
|
|
||
|
// End of File
|