2 * Copyright (c) 2005-2007 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
14 * Description: CPosLandmarkDatabase class
19 #ifndef CPOSLANDMARKDATABASE_H
20 #define CPOSLANDMARKDATABASE_H
24 #include "EPos_Landmarks.h"
25 #include "EPos_CPosLandmark.h"
26 #include "EPos_CPosLmPartialReadParameters.h"
27 #include "EPos_CPosLmItemIterator.h"
28 #include "EPos_TPosLmSortPref.h"
29 #include "EPos_CPosLmOperation.h"
31 class CPosLandmarkParser;
32 class CPosLandmarkEncoder;
36 * Handle to a landmark database.
38 * This class contains functions for creating, iterating, reading, modifying
39 * and deleting landmarks.
41 * Operations on the database may fail with error code @p KErrCorrupt if the
42 * database is damaged. The client can try to recover the database by calling
43 * @ref CPosLandmarkDatabase::InitializeL().
45 * Operations on the database may fail with error code @p KErrLocked if another
46 * client is writing to the database. Write operations can also fail with this
47 * error code if another client is currently reading from the database.
49 * If @ref CPosLandmarkDatabase is used, the client must call the global
50 * function @ref ReleaseLandmarkResources() before terminating in order to
51 * release all used landmark resources, otherwise the client may receive
54 * @p NetworkServices capability is required for remote databases.
57 * @lib eposlandmarks.lib.
59 class CPosLandmarkDatabase : public CBase
64 * Bitmap for specifying a group of transfer options
65 * defined by @ref _TAttributes.
67 typedef TUint TTransferOptions;
70 * Specifies options for importing and exporting landmarks.
72 enum _TTransferOptions
74 EDefaultOptions = 0 /**<
75 None of the transfer option flags are set. */,
76 EIncludeCategories = 0x01 /**<
77 Export/Import the categories of the landmarks. */,
78 EIncludeGlobalCategoryNames = 0x02 /**<
79 Only useful in combination with EIncludeCategories.
80 If set, global category names will be used in export/import
81 even if user has renamed them. For import it means that the
82 names of the global categories in the database are overwritten
83 by the imported names. For export it means that predefined
84 names of global categories in the current language will be
85 exported instead of user-defined names. */,
86 ESupressCategoryCreation = 0x04 /**<
87 Only useful in combination with EIncludeCategories.
88 If set, no new categories are created in the database when
89 importing landmarks. This means that connections from
90 imported landmarks will be established only to already
91 existing categories, according to the import information. */
95 * Encapsulates size information for a landmark database.
100 The size of the database in bytes. */
102 How many percent of the database which is currently in use.
103 This value lies in the interval [0.0, 1.0]. */
109 * Opens the default landmark database.
111 * The client takes ownership of the returned database handle.
113 * The database may have to be initialized before it can be used, see
114 * @ref IsInitializingNeeded and @ref InitializeL.
116 * This function requires @p ReadUserData capability.
118 * @returns A handle to the open database.
120 IMPORT_C static CPosLandmarkDatabase* OpenL();
123 * Opens a specific landmark database.
125 * The client refers to a database by URI. The URI consists of a
126 * protocol specifier and the database location: "protocol://location".
127 * If the client does not specify a protocol, "file://" will be assumed.
129 * For local landmark databases, the URI consists of the drive and the
130 * database file name, e.g. "c:landmarks.ldb". The path cannot be
131 * specified by the client. The extension of the database file name must
132 * be "ldb" otherwise the client will get the error @p KErrArgument.
134 * If the client specifies a local database and does not specify the
135 * drive letter, e.g. "landmarks.ldb", default database drive will be assumed.
137 * The client takes ownership of the returned database handle.
139 * The database may have to be initialized before it can be used, see
140 * @ref IsInitializingNeeded and @ref InitializeL.
142 * This function requires @p ReadUserData capability.
144 * @param[in] aDatabaseUri The URI of the database to open.
145 * @returns A handle to the open database.
147 * @leave KErrArgument Extension of the local database name is not "ldb".
148 * @leave KErrNotSupported The protocol specified in URI is not supported.
150 IMPORT_C static CPosLandmarkDatabase* OpenL(
151 const TDesC& aDatabaseUri
157 IMPORT_C virtual ~CPosLandmarkDatabase();
162 * Checks if the database is in need of initialization.
164 * If the database needs to be initialized, the client must call
165 * @ref InitializeL, otherwise the database may not be possible to
166 * access. Access functions may leave with @p KErrPosLmNotInitialized.
168 * Initialization may be needed also if the database becomes damaged.
169 * The client can then try to call @ref InitializeL to try to recover
172 * @returns @p ETrue if the database is in need of initialization,
173 * otherwise @p EFalse.
175 virtual TBool IsInitializingNeeded() const = 0;
178 * Initializes the database.
180 * This function may have to be called right after the database is
181 * opened. @ref IsInitializingNeeded can be called to find out if
182 * initialization is needed.
184 * If the database becomes damaged, the client can call
185 * @ref InitializeL to try to recover the database.
187 * It is ok to call @InitializeL even if initialization is not needed.
188 * In this case, the operation will not do anything.
190 * If the database needs to be initialized, the client must call
191 * @ref InitializeL, otherwise the database may not be possible to
192 * access. Access functions may leave with @p KErrPosLmNotInitialized.
194 * The function returns an operation object which can be run in
195 * incremental mode. If it is run incrementally the client can supervise
196 * the progress of the operation.
198 * If the @ref CPosLmOperation object is deleted before the operation
199 * is complete, it is possible that the database is not yet initialized.
201 * The client takes ownership of the returned operation object.
203 * This function requires @p ReadUserData capability.
205 * @returns A handle to the operation.
207 virtual CPosLmOperation* InitializeL() = 0;
210 * Reads a landmark from the database.
212 * @pre Database is initialized (see @ref IsInitializingNeeded).
214 * The client takes ownership of the returned database landmark object.
216 * This function requires @p ReadUserData capability.
218 * @param The ID of the landmark to read.
219 * @returns The requested landmark. The landmark object is put on the
222 * @leave KErrNotFound The requested landmark does not exist in the database.
223 * @leave KErrPosLmNotInitialized Database is not yet initialized.
225 virtual CPosLandmark* ReadLandmarkLC(
226 TPosLmItemId aLandmarkId
230 * Returns an object for iterating the landmarks in the database.
232 * @pre Database is initialized (see @ref IsInitializingNeeded).
234 * The iterator object is reset, so that the first
235 * @ref CPosLmItemIterator::NextL call will return the first landmark
238 * The client takes ownership of the returned iterator object.
240 * This function requires @p ReadUserData capability.
242 * @return The landmark iterator.
243 * @leave KErrPosLmNotInitialized Database is not yet initialized.
245 virtual CPosLmItemIterator* LandmarkIteratorL() = 0;
248 * Returns an object for iterating the landmarks in the database.
250 * @pre Database is initialized (see @ref IsInitializingNeeded).
252 * The iterator object is reset, so that the first
253 * @ref CPosLmItemIterator::NextL call will return the first landmark
256 * This overload of the iterator function takes a sort preference object
257 * as input. The sort preference object specifies how the landmarks
258 * should be sorted by the iterator. Only sorting by landmark name is supported.
260 * The client takes ownership of the returned iterator object.
262 * This function requires @p ReadUserData capability.
264 * @param[in] aSortPref A sort preference object.
265 * @return The landmark iterator.
267 * @leave KErrNotSupported Sorting by another attribute than name is
269 * @leave KErrPosLmNotInitialized Database is not yet initialized.
271 virtual CPosLmItemIterator* LandmarkIteratorL(
272 const TPosLmSortPref& aSortPref
276 * Adds a new landmark to the database and returns its ID.
278 * @pre Database is initialized (see @ref IsInitializingNeeded).
280 * A landmark can contain the IDs of the categories it belongs to. If
281 * any of these categories does not exist in the database, the add
282 * operation will still complete successfully but the category which
283 * was not found will be ignored.
285 * This function requires @p ReadUserData and @p WriteUserData
288 * @post Landmark is added to the database and landmark object
289 * has database item set (CPosLandmark::LandmarkId()).
291 * @param[in,out] aLandmark The landmark to add.
292 * @return The ID of the new landmark.
294 * @leave KErrAccessDenied The database is read-only.
295 * @leave KErrPosLmNotInitialized Database is not yet initialized.
297 virtual TPosLmItemId AddLandmarkL(
298 CPosLandmark& aLandmark
302 * Updates a landmark in the database.
304 * @pre Database is initialized (see @ref IsInitializingNeeded).
306 * Only landmark objects containing full landmark information can be
307 * used to update a landmark. If a partial landmark (see
308 * @ref ReadPartialLandmarkLC and @ref CPosLandmark::IsPartial) is
309 * passed to this function it will leave with @p KErrArgument.
311 * Note that any updates in the database made since the landmark
312 * object was read from the database will be overwritten by this
315 * A landmark can contain the IDs of the categories it belongs to. If
316 * any of these categories does not exist in the database, the update
317 * operation will still complete successfully but the category which
318 * was not found will be ignored.
320 * This function requires @p ReadUserData and @p WriteUserData
323 * @param[in] aLandmark The new landmark data.
325 * @leave KErrArgument A partial landmark is passed.
326 * @leave KErrAccessDenied The database is read-only.
327 * @leave KErrPosLmNotInitialized Database is not yet initialized.
329 virtual void UpdateLandmarkL(
330 const CPosLandmark& aLandmark
334 * Removes a landmark from the database.
336 * @pre Database is initialized (see @ref IsInitializingNeeded).
338 * If the landmark does not exist in the database, nothing happens.
340 * This function requires @p ReadUserData and @p WriteUserData
343 * @param aLandmarkId The ID of the landmark to remove.
345 * @leave KErrAccessDenied The database is read-only.
346 * @leave KErrPosLmNotInitialized Database is not yet initialized.
348 virtual void RemoveLandmarkL(
349 TPosLmItemId aLandmarkId
353 * Removes a set of landmarks from the database.
355 * @pre Database is initialized (see @ref IsInitializingNeeded).
357 * If any of the specified landmarks don't exist in the database,
358 * nothing happens for those landmarks.
360 * The function returns an operation object which can be run in
361 * incremental mode. If it is run incrementally the client can supervise
362 * the progress of the operation.
364 * If the @ref CPosLmOperation object is deleted before the operation
365 * is complete, it is possible that only a subset of the landmarks
368 * The client takes ownership of the returned operation object.
370 * While removing landmarks, this operation will acquire a write-lock on
373 * This function requires @p ReadUserData and @p WriteUserData
376 * @param[in] aLandmarkIdArray The IDs of the landmarks to remove.
377 * @returns A handle to the operation.
379 * @leave KErrAccessDenied The database is read-only.
380 * @leave KErrPosLmNotInitialized Database is not yet initialized.
382 virtual CPosLmOperation* RemoveLandmarksL(
383 const RArray<TPosLmItemId>& aLandmarkIdArray
387 * Removes all landmarks from the database.
389 * @pre Database is initialized (see @ref IsInitializingNeeded).
391 * The function returns an operation object which can be run in
392 * incremental mode. If it is run incrementally the client can supervise
393 * the progress of the operation.
395 * If the @ref CPosLmOperation object is deleted before the operation
396 * is complete, it is possible that only a subset of the landmarks
399 * The client takes ownership of the returned operation object.
401 * While removing landmarks, this operation will acquire a write-lock on
404 * This function requires @p ReadUserData and @p WriteUserData
407 * @returns A handle to the operation.
409 * @leave KErrAccessDenied The database is read-only.
410 * @leave KErrPosLmNotInitialized Database is not yet initialized.
412 virtual CPosLmOperation* RemoveAllLandmarksL() = 0;
415 * Returns the partial read parameters for this database handle.
417 * Partial read parameters are used to define which landmark data should
418 * be returned when @ref ReadPartialLandmarkLC is called.
420 * The client takes ownership of the returned parameter object.
422 * @returns The current partial read parameters.
424 virtual CPosLmPartialReadParameters* PartialReadParametersLC() = 0;
427 * Sets the partial read parameters for this database handle.
429 * Partial read parameters are used to define which landmark data should
430 * be returned when @ref ReadPartialLandmarkLC is called.
432 * @param[in] aPartialSettings The new partial read parameters.
434 virtual void SetPartialReadParametersL(
435 const CPosLmPartialReadParameters& aPartialSettings
439 * Reads partial data from a landmark in the database.
441 * @pre Database is initialized (see @ref IsInitializingNeeded).
443 * Partial settings define which landmark data should be returned in
444 * this call. Partial read attributes are defined by calling
445 * @ref SetPartialReadParametersL. If no partial read parameters have
446 * been set, the landmarks will not contain any attributes.
448 * The client takes ownership of the returned landmark object.
450 * This function requires @p ReadUserData capability.
452 * @param The ID of the landmark to read.
453 * @returns The requested landmark. The landmark object will only
454 * contain the attributes defined in the partial read attributes. The
455 * landmark object is put on the cleanup stack.
457 * @leave KErrNotFound The requested landmark does not exist in the database.
458 * @leave KErrPosLmNotInitialized Database is not yet initialized.
460 virtual CPosLandmark* ReadPartialLandmarkLC(
461 TPosLmItemId aLandmarkId
465 * Reads partial data from a set of landmarks in the database.
467 * @pre Database is initialized (see @ref IsInitializingNeeded).
469 * Partial settings define which landmark data should be read. Partial
470 * read attributes are defined by calling @ref SetPartialReadParametersL.
471 * If no partial read parameters have been set, the landmarks will not
472 * contain any attributes.
474 * Note that the returned data may be very big if all attributes in
475 * each landmark are requested. A typical use for this function is to
476 * retrieve the names for a set of landmarks.
478 * When the request is completed, the result can be retrieved by calling
479 * @ref TakePreparedPartialLandmarksL.
481 * The function returns an operation object which can be run in
482 * incremental mode. If it is run incrementally the client can supervise
483 * the progress of the operation.
485 * The client takes ownership of the returned operation object.
487 * While preparing landmark information, this operation will acquire a
488 * read-lock on the database.
490 * This function requires @p ReadUserData capability.
492 * @param[in] aLandmarkIdArray An array with IDs of the landmarks to read.
493 * @returns A handle to the operation.
495 * @leave KErrPosLmNotInitialized Database is not yet initialized.
497 virtual CPosLmOperation* PreparePartialLandmarksL(
498 const RArray<TPosLmItemId>& aLandmarkIdArray
502 * Fetches the result from a call to @ref PreparePartialLandmarksL.
504 * @pre A call to this function must be preceeded by successful call to
505 * @ref PreparePartialLandmarksL.
507 * The returned array will have the same length as the ID array passed
508 * in the @ref PreparePartialLandmarksL call and it will have the same
511 * If reading a landmark failed during preparation, the corresponding
512 * pointer value in the returned array will be NULL. For instance,
513 * reading can fail if the specified ID does not exist in the database.
515 * The client takes ownership of the returned array object including
516 * the contained landmark objects.
518 * @param[in] aPreparePartialLandmarkOperation The operation object returned
519 * by the @ref PreparePartialLandmarksL function.
521 * @returns An array containing the prepared partial landmark objects.
523 * @leave KErrNotFound @ref PreparePartialLandmarksL hasn't been called yet or
524 * it didn't succeed or this function has been called already since then.
526 virtual CArrayPtr<CPosLandmark>* TakePreparedPartialLandmarksL(
527 CPosLmOperation* aPreparePartialLandmarkOperation
531 * Returns a URI which points to the landmark database storage.
533 * The URI may point to a file in the terminal file system or on a
536 * The client takes ownership of the returned descriptor.
538 * @returns The database URI. The URI is put on the cleanup stack.
540 virtual HBufC* DatabaseUriLC() = 0;
543 * Returns size information for the database.
545 * This function requires @p ReadUserData capability.
547 * @returns Size information for the database.
549 virtual TSize SizeL() = 0;
552 * Compacts the landmark database.
554 * @pre Database is initialized (see @ref IsInitializingNeeded).
556 * Compaction means that any unused space in the database is removed.
558 * The function returns an operation object which can be run in
559 * incremental mode. If it is run incrementally the client can supervise
560 * the progress of the operation.
562 * The client takes ownership of the returned operation object.
564 * This function requires @p ReadUserData and @p WriteUserData
567 * @returns A handle to the operation.
569 * @leave KErrAccessDenied The database is read-only.
570 * @leave KErrPosLmNotInitialized Database is not yet initialized.
572 virtual CPosLmOperation* CompactL() = 0;
575 * Listens for database events.
577 * This function is asynchronous and it will complete the request
578 * status when an event occurs. At this time @p aEvent input parameter
579 * is updated and the client can read event information from it.
581 * Event listening can be cancelled by calling
582 * @ref CancelNotifyDatabaseEvent.
584 * This function requires @p ReadUserData capability.
586 * @param[out] aEvent Upon completion contains the event information.
587 * @param[out] aStatus Upon completion contains status of the request.
588 * @p KErrNotSupported if events are not supported.
589 * @p KErrNone if an event occured, otherwise an error code if some error was encountered.
591 * @panic "Landmarks Client"-EPosEventNotifierAlreadyHasOutstandingRequest
592 * Client already has an outstanding @ref NotifyDatabaseEvent request.
594 virtual void NotifyDatabaseEvent(
596 TRequestStatus& aStatus
600 * Cancels a call to @ref NotifyDatabaseEvent.
602 * This function requires @p ReadUserData capability.
604 * @return @p KErrNone if the request was successfully cancelled,
605 * otherwise a system wide error code.
607 virtual TInt CancelNotifyDatabaseEvent() = 0;
610 * Exports a number of landmarks.
612 * @pre Database is initialized (see @ref IsInitializingNeeded).
614 * To export a set of landmarks, the client must first create a
615 * @ref CPosLandmarkEncoder object for the landmark content format in
616 * which the landmarks should be encoded. The client can add some
617 * information of the landmark collection in the encoder as well.
619 * The client must also provide a list of the landmarks which should be
620 * exported. If one of the landmarks are not found in the database, the returned
621 * operation fails with error code @p KErrNotFound.
623 * The client does not have to add any landmarks to the encoder object.
624 * This function will add the ones specified in the ID array.
626 * The function returns an operation object which can be run in
627 * incremental mode. If it is run incrementally the client can supervise
628 * the progress of the operation.
630 * If the @ref CPosLmOperation object is deleted before the operation
631 * is complete, it is possible that only a subset of the landmarks have
634 * The client takes ownership of the returned operation object.
636 * When all landmarks have been exported the client must finalize
637 * encoding by calling @ref CPosLandmarkEncoder::FinalizeEncodingL.
639 * This function requires @p ReadUserData capability.
641 * @param[in] aLandmarkEncoder A landmark encoder object.
642 * @param[in] aLandmarkIdArray The landmarks which should be exported.
643 * @param[in] aTransferOptions A bitmap representing the options for the
644 * export operation. The bitmap values are defined by
645 * @ref _TTransferOptions.
647 * @returns A handle to the operation.
649 * @leave KErrPosLmNotInitialized Database is not yet initialized.
651 * @panic "Landmarks Client"-EPosLmInvalidArgument
652 * Client specified invalid transfer option values.
654 virtual CPosLmOperation* ExportLandmarksL(
655 CPosLandmarkEncoder& aLandmarkEncoder,
656 const RArray<TPosLmItemId>& aLandmarkIdArray,
657 TTransferOptions aTransferOptions
661 * Import a set of landmarks.
663 * @pre Database is initialized (see @ref IsInitializingNeeded).
665 * To import landmark content, the client must first create a parser
666 * object which can parse the landmark content. The client does not have
667 * to call @ref CPosLandmarkParser::ParseContentL first. If the content
668 * is not already parsed, this will be handled by the import operation.
670 * The function returns an operation object which can be run in
671 * incremental mode. If it is run incrementally the client can supervise
672 * the progress of the operation.
674 * If the @ref CPosLmOperation object is deleted before the operation
675 * is complete, it is possible that only a subset of the landmarks have
678 * The client takes ownership of the returned operation object.
680 * After completion @ref ImportedLandmarksIteratorL can be called to
681 * retrieve the IDs of the added landmarks.
683 * The @p NextStep function in the operation object cannot be executed
684 * synchronously using @p User::WaitForRequest. Doing so may cause the
685 * operation to hang. @p NextStep must be run using an active object
686 * for this operation.
688 * This function requires @p ReadUserData and @p WriteUserData
691 * @param[in] aLandmarkParser An object which can parse landmark content.
692 * @param[in] aTransferOptions A bitmap representing the options for the
693 * import operation. The bitmap values are defined by
694 * @ref _TTransferOptions.
696 * @returns A handle to the operation.
698 * @leave KErrAccessDenied The database is read-only.
699 * @leave KErrPosLmNotInitialized Database is not yet initialized.
701 * @panic "Landmarks Client"-EPosLmInvalidArgument
702 * Client specified invalid transfer option values.
704 virtual CPosLmOperation* ImportLandmarksL(
705 CPosLandmarkParser& aLandmarkParser,
706 TTransferOptions aTransferOptions
710 * Import a set of landmarks.
712 * @pre Database is initialized (see @ref IsInitializingNeeded).
714 * To import landmark content, the client must first create a parser
715 * object which can parse the landmark content. The client does not have
716 * to call @ref CPosLandmarkParser::ParseContentL first. If the content
717 * is not already parsed, this will be handled by the import operation.
719 * In this overload of the function, the client can pass an array
720 * defining a subset of the landmarks in the parser object. This way
721 * the client can select to import only a part of the landmark content.
723 * The function returns an operation object which can be run in
724 * incremental mode. If it is run incrementally the client can supervise
725 * the progress of the operation.
727 * If the @ref CPosLmOperation object is deleted before the operation
728 * is complete, it is possible that only a subset of the landmarks have
731 * The client takes ownership of the returned operation object.
733 * After completion @ref ImportedLandmarksIteratorL can be called to
734 * retrieve the IDs of the added landmarks.
736 * The @p NextStep function in the operation object cannot be executed
737 * synchronously using @p User::WaitForRequest. Doing so may cause the
738 * operation to hang. @p NextStep must be run using an active object
739 * for this operation.
741 * This function requires @p ReadUserData and @p WriteUserData
744 * @param[in] aLandmarkParser An object which can parse landmark content.
745 * @param[in] aLandmarkSelection An array defining which of the parsed
746 * landmarks to import. The array items refer to the order in which
747 * @ref CPosLandmarkParser accesses the landmarks. 0 means the first
748 * parsed landmark, 1 means the second, etc. If the parser supports
749 * indexing, these numbers correspond to the index values used to
750 * access the landmarks in @ref CPosLandmarkParser::LandmarkLC. The
751 * index values must be less than the number of landmarks accessed by
752 * the parser, otherwise the operation object will panic with error
753 * code @p EPosInvalidIndex during execution. @p Note: The indexes
754 * can be used regardless of whether the parser supports indexing or
756 * @param aTransferOptions A bitmap representing the options for the
757 * import operation. The bitmap values are defined by
758 * @ref _TTransferOptions.
759 * @returns A handle to the operation.
761 * @leave KErrAccessDenied The database is read-only.
762 * @leave KErrPosLmNotInitialized Database is not yet initialized.
764 * @panic "Landmarks Client"-EPosLmInvalidArgument
765 * Client specified invalid transfer option values.
767 virtual CPosLmOperation* ImportLandmarksL(
768 CPosLandmarkParser& aLandmarkParser,
769 const RArray<TUint>& aLandmarkSelection,
770 TTransferOptions aTransferOptions
774 * Returns an object for iterating the landmarks added in an import
777 * To import landmarks @ref ImportLandmarksL is used.
779 * If @ref ImportedLandmarksIteratorL is called before the
780 * @ref ImportLandmarksL operation has completed, the iterator will
781 * iterate the landmarks imported so far. Landmarks imported after
782 * the iterator is obtained will not affect the iterator. A new
783 * iterator must be obtained to iterate these new landmarks.
785 * The client takes ownership of the returned iterator object.
787 * @param[in] aImportOperation This object is returned by
788 * @ref ImportLandmarksL methods.
789 * @returns An object for iterating the landmarks added in the latest
792 virtual CPosLmItemIterator* ImportedLandmarksIteratorL(
793 CPosLmOperation* aImportOperation
799 * Returns the database access implementation ID.
801 * @returns The @ref CPosLandmarkDatabase implementation ID.
803 TUid ImplementationId() const;
808 IMPORT_C CPosLandmarkDatabase();
812 // Prohibit copy constructor
813 CPosLandmarkDatabase( const CPosLandmarkDatabase& );
814 // Prohibit assigment operator
815 CPosLandmarkDatabase& operator= ( const CPosLandmarkDatabase& );
819 // Implementation Uid
823 #endif // CPOSLANDMARKDATABASE_H