123456789101112131415161718192021222324252627 |
- /*
- ============================================================================
- Name : CelestialSphere.pan
- Author : Den Grigorenko
- Copyright : Copyright (c) 2008 Den123
- Description : This file contains panic codes.
- ============================================================================
- */
- #ifndef __CELESTIALSPHERE_PAN__
- #define __CELESTIALSPHERE_PAN__
- /** CelestialSphere application panic codes */
- enum TCelestialSpherePanics
- {
- ECelestialSphereUi = 1
- // add further panics here
- };
- inline void Panic(TCelestialSpherePanics aReason)
- {
- _LIT(applicationName, "CelestialSphere");
- User::Panic(applicationName, aReason);
- }
- #endif // __CELESTIALSPHERE_PAN__
|