Local Landmark Database Manager
| Line 48: | Line 48: | ||
*'''CLmOpDbExportHandler''' | *'''CLmOpDbExportHandler''' | ||
provide implementation of several methods ( main method- ''void ExecL()'' ) to implement specific logic. | provide implementation of several methods ( main method- ''void ExecL()'' ) to implement specific logic. | ||
| + | |||
| + | Source code (with detailed comments): [[Image:Lldbman.zip]] | ||
==Internal Links== | ==Internal Links== | ||
Revision as of 14:57, 10 May 2008
| ID | 0xA00078CC | Creation date | May 10, 2008 |
| Platform | S60 3rd, S60 3rd FP1 | Tested on devices | N95 8Gb |
| Category | Symbian C++ | Subcategory | LBS |
| Keywords: Landmark Databases |
Local Landmark Database Manager (v 1.1.0)
This application allows you to manage the local landmark databases and supports the following operations:
- show info about the specified database
- create new local database (user must specify the URI)
- delete selected database
- mark selected database as default database ( displays red icon )
- copy selected database
- change name for the selected database
- export selected database to the file ( user must specify the name of the file )
- import all landmarks from the specified file to the selected DB
- compact the specified database
- delete all landmarks from the specified database
The main API of the application engine is "Landmarks Database Management API". All lengthy operations are performed consistently, step by step. The progress of the operation execution is displayed with the help of progress dialog.
The base class for all lengthy operations is CLmOperationHandler. This class contains all necessary data for working with active objects. Descendants of this class:
- CLmOpDbInitHandler
- CLmOpDbClearHandler
- CLmOpDbCompactHandler
- CLmOpDbImportHandler
- CLmOpDbExportHandler
provide implementation of several methods ( main method- void ExecL() ) to implement specific logic.
Source code (with detailed comments): File:Lldbman.zip

