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
41 lines
964 B
C++
41 lines
964 B
C++
/*
|
|
* Copyright (c) 2009 Nokia Corporation.
|
|
*/
|
|
|
|
#ifndef __CAMERAWRAPPEREXAMPLEDOCUMENT_h__
|
|
#define __CAMERAWRAPPEREXAMPLEDOCUMENT_h__
|
|
|
|
// INCLUDES
|
|
#include <akndoc.h>
|
|
|
|
// FORWARD DECLARATIONS
|
|
class CCameraWrapperExampleAppUi;
|
|
class CEikApplication;
|
|
|
|
// CLASS DECLARATION
|
|
class CCameraWrapperExampleDocument : public CAknDocument
|
|
{
|
|
public:
|
|
// Constructors and destructor
|
|
static CCameraWrapperExampleDocument* NewL (CEikApplication& aApp );
|
|
static CCameraWrapperExampleDocument* NewLC (CEikApplication& aApp );
|
|
virtual ~CCameraWrapperExampleDocument ();
|
|
|
|
public:
|
|
// Functions from base classes
|
|
CEikAppUi* CreateAppUiL ();
|
|
|
|
private:
|
|
// Constructors
|
|
void ConstructL ();
|
|
CCameraWrapperExampleDocument (CEikApplication& aApp );
|
|
|
|
private:
|
|
// Data
|
|
|
|
};
|
|
|
|
#endif // __CAMERAWRAPPEREXAMPLEDOCUMENT_h__
|
|
|
|
// End of File
|