- // Copyright (c) 2006 Nokia Corporation.
- #ifndef __S60UIEXAMPLE_PAN__
- #define __S60UIEXAMPLE_PAN__
- // S60UIExample application panic codes
- enum TS60UIExamplePanics
- {
- ES60UIExampleBasicUi = 1
- // add further panics here
- };
- inline void Panic( TS60UIExamplePanics aReason )
- {
- _LIT( applicationName,"S60UIExample" );
- User::Panic( applicationName, aReason );
- }
- #endif // __S60UIEXAMPLE_PAN__
- // End of File