我正在使用Nokia Qt SDK为Nokia 5230(S60第5版平台)编写程序。我在检索地理位置信息时遇到问题。我正在尝试使用来自诺基亚论坛(http://bit.ly/be3QDK的第一个)的示例。如下代码:

#include <lbs.h>
#include <lbsrequestor.h>
#include <lbscommon.h>
#include <lbsposition.h>
#include <lbspositioninfo.h>
#include <lbssatellite.h>

MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{
    ui->setupUi(this);
    RPositionServer server;
    RPositioner positioner;
    User::LeaveIfError(server.Connect());
    CleanupClosePushL(server);
    // use default positioning module
    User::LeaveIfError(positioner.Open(server));
    CleanupClosePushL(positioner);

    // Set the Requestor information
    _LIT(KCntPhone, "+358501234567");
    _LIT(KSrvName, "MyService");
    RRequestorStack stack;
    CRequestor* contact = CRequestor::NewLC(CRequestor::ERequestorContact,CRequestor::EFormatTelephone,KCntPhone);
    stack.Append(contact);
    CRequestor* service = CRequestor::NewLC(CRequestor::ERequestorService,CRequestor::EFormatApplication,KSrvName);
    stack.Append(service);
    User::LeaveIfError(positioner.SetRequestor(stack));
    //Issue a Location Request
    TRequestStatus status;
    TPositionInfo posInfo;
    positioner.NotifyPositionUpdate(posInfo, status); // asynchronous request
    User::WaitForRequest(status); // for exemplification only, AOs should be used
    User::LeaveIfError(status.Int());
    //Use the location information present in the posInfo object
    //Cleanup
    stack.Reset();
    CleanupStack::PopAndDestroy(service);
    CleanupStack::PopAndDestroy(contact);
    CleanupStack::PopAndDestroy(&positioner); // this will call Close() method
    CleanupStack::PopAndDestroy(&server); // this will call Close() method
    QGeoPositionInfoSource *source = QGeoPositionInfoSource::createDefaultSource(this);
    if (source) {
        connect(source, SIGNAL(positionUpdated(QGeoPositionInfo)),this, SLOT(positionUpdated(QGeoPositionInfo)));
        source->startUpdates();
    }
}


当我尝试使其出现链接器错误时:

Undefined reference to `RPositionServer::RPositionServer()`


等等。我做错了什么?我必须链接到哪个库? thnx。

最佳答案

您必须链接到Lbs.lib。请参见参考文献here

08-16 11:42