Tagged Questions
0
votes
3answers
89 views
Shared_Ptr eates the performance of my application
I'm on Ubuntu, and I'm working on a computer vision application (optical flow), and I'm doing some profiling on the code using valgrind.
After profiling, I found that the shared_ptr is taking 74% of ...
0
votes
1answer
35 views
Additional functions added to a class cause a segfault when class is created as a shared_ptr
This really has me stumped.
We have a class with a dozen or so getters and setters defined, that take a mix of types (QString, int, bool) for the various member variables. I'm currently adding a new ...
2
votes
1answer
119 views
Qt raw vs std::shared_ptr
I noticed that when substituting raw pointers with shared_ptr in QT, my code does not work anymore.
For example, if instead of
QTreeWidgetItem* vItem(new QTreeWidgetItem(ItemTitle));
I use
...
0
votes
1answer
250 views
QSharedPointer and QObject::deleteLater
I have a situation where a QSharedPointer managed object signalizes that it has finished it's purpose and is ready for deletion soon (after execution left the function emitting my readyForDeletion ...
1
vote
2answers
128 views
Qt & shared_pointer : execution error
I'm try to use tr1's shared_ptr and Qt 4.8.2 but I have some troubles.
Here my code :
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <string>
#include <tr1/memory>
using ...
1
vote
1answer
288 views
Generalizing shared pointers and QSharedPointer::data() vs shared_ptr::get()?
I made a Qt library that is built on longstanding abstractions like QSharedDataPointer and QSharedData. So when I needed an ordinary shared pointer it made sense to go with QSharedPointer for ...
1
vote
2answers
159 views
using Qt objects with std::shared_ptr
I'm trying to update a small utility application to a more modern c++ fashion, but I'm having problems using some Qt objects with std::shared_ptr, especially those that receive some other QWidget as a ...
-1
votes
1answer
107 views
Cannot initialize shared_ptr
I've shared_ptr <QMap < T , X > * > shared_ and I'm trying to initialize it like this:
shared_t = new QMap < T , X >();
but I'm getting error:
...
0
votes
1answer
2k views
QSharedPointer, how to pass them around, and do I need them?
Been trying to understand shared pointer for a few days now and it feels like I cant seem to get it. Not sure if it's just to obvious or if it's too complicated. First of all, could anyone please give ...
0
votes
1answer
278 views
Qt connect slot with signal from boost::shared_ptr
I have a mainwindow app, when shortcut is triggered, a dialog will popup to show some information, the user may do some configuration in this dialog, then a signal is sent back to the mainwindow, the ...
0
votes
3answers
821 views
qt application and std::shared_ptr
I want to create a qt application ( using qt-creator ), that use my library, that was build in VS2010. A library contains a class, that use std::shred_ptr<>
#include <memory>
struct ...
2
votes
2answers
233 views
Boost shared_ptr seems doesn't support operator ==
Here is the that runs on the latest QT IDE under Windows 7 (boost.1.48)
class Employee {
public:
int Id;
...
bool operator==(const Employee& other) {
qDebug() << this->Id ...
0
votes
2answers
884 views
Is there a way to safely delete QList of non-unique pointers to MyObject?
I know this kind of question has been asked to death but I would like to know if there is anyway to do what I stated in the question without using Boost library pointers etc. Basically I have the ...
1
vote
4answers
1k views
How to prevent deletion of pointers managed by a QSharedPointer
I have some intermittent segmentation faults in a Qt application. I think the problem is related to our (bad) use of QSharedPointer. The Qt Documentation states :
QSharedPointer::QSharedPointer ...
8
votes
3answers
2k views
C++/Qt - Memory allocation question
I recently started investigating Qt for myself and have the following question:
Suppose I have some QTreeWidget* widget. At some moment I want to add some items to it and this is done via the ...