diff -r 2922f70fca82 -r 67457b2ffb33 camerauis/cameraxui/cxengine/inc/cxeimagedataitemsymbian.h --- a/camerauis/cameraxui/cxengine/inc/cxeimagedataitemsymbian.h Thu Jul 15 01:49:11 2010 +0300 +++ b/camerauis/cameraxui/cxengine/inc/cxeimagedataitemsymbian.h Thu Jul 15 01:52:14 2010 +0300 @@ -30,12 +30,19 @@ { Q_OBJECT public: // from CxeImageDataItemSymbian - CxeImageDataItemSymbian(QByteArray data, QString filename, int id, CxeImageDataItem::State state = CxeImageDataItem::SavePending); + CxeImageDataItemSymbian(QByteArray data, + QString filename, + int id, + bool addLocation, + CxeImageDataItem::State state = CxeImageDataItem::SavePending); + virtual ~CxeImageDataItemSymbian(); CxeImageDataItem::State state() const; CxeError::Id save(); int id() const; + bool isLocationEnabled() const; + public: // new methods QString path() const; @@ -60,6 +67,7 @@ // used for image saving QByteArray mData; + bool mAddLocationInfo; QString mPath; RFile mFile; RFs mFs;