mirror of
https://github.com/zxing/zxing.git
synced 2024-11-12 22:14:06 -08:00
21 lines
459 B
Plaintext
21 lines
459 B
Plaintext
/*
|
|
* Copyright (c) 2009 Nokia Corporation.
|
|
*/
|
|
|
|
#ifndef __CAMERAWRAPPEREXAMPLE_PAN__
|
|
#define __CAMERAWRAPPEREXAMPLE_PAN__
|
|
|
|
enum TCameraWrapperExamplePanics
|
|
{
|
|
ECameraWrapperExampleUi = 1
|
|
// add further panics here
|
|
};
|
|
|
|
inline void Panic (TCameraWrapperExamplePanics aReason )
|
|
{
|
|
_LIT (applicationName, "ZXingBarcodeReader" );
|
|
User::Panic (applicationName, aReason );
|
|
}
|
|
|
|
#endif // __CAMERAWRAPPEREXAMPLE_PAN__
|