mirror of
https://github.com/zxing/zxing.git
synced 2024-11-11 05:24:06 -08:00
515f743dc0
git-svn-id: https://zxing.googlecode.com/svn/trunk@1332 59b500cc-1b3d-0410-9834-0bbf25fbcc57
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
|