The QLandmarkSaveRequest class allows a client to asynchronously request that certain landmarks be saved by a landmark manager. More...
#include <QLandmarkSaveRequest>
Inherits QLandmarkAbstractRequest.
QLandmarkSaveRequest ( QLandmarkManager * manager, QObject * parent = 0 ) | |
~QLandmarkSaveRequest () | |
QMap<int, QLandmarkManager::Error> | errorMap () const |
QList<QLandmark> | landmarks () const |
void | setLandmark ( const QLandmark & landmark ) |
void | setLandmarks ( const QList<QLandmark> & landmarks ) |
The QLandmarkSaveRequest class allows a client to asynchronously request that certain landmarks be saved by a landmark manager.
For a QLandmarkSaveRequest, the resultsAvailable() signal will be emitted when either an individual items error out (individaul errors may be retrieved by calling errorMap()), an overall operation error occurs(which may be retrieved by calling error()), or when individual items have been saved (which may be retrieved by calling landmarks()).
Constructs a landmark save request with the given manager and parent.
Destroys the request object.
Returns the mapping of input landmark list indices to errors which occurred.
Returns the list of landmarks which will be saved if called prior to callling QLandmarkAbstractRequest::start(), otherwise returns the list of landmarks as they were saved into the landmark manager.
See also setLandmarks().
Convenience function to set a single landmark to be saved.
See also setLandmarks().
Sets the list of landmarks to be saved.
See also landmarks() and setLandmark().