Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm coming from a C# background and still getting my head around c++ and Qt smart pointers. This should be a basic question:

In myClass.h

QSharedPointer<AccessFlags> m_flags;

In myClass.cpp I'm trying to set (is set the correct word?) the m_flags pointer

if(m_flags.isNull())
    m_flags = new AccessFlags();


class AccessFlags{
public:
     QHash<QString,int> flags;
     AccessFlags();  //The dictionary is setup in the constructor
};

The compiler complains "no match for 'operator=' in.. How do I set the pointer?

share|improve this question
Why is there a . after m_flags? – David Schwartz Nov 6 '12 at 2:07
typo. Didn't copy and paste code. – DarwinIcesurfer Nov 6 '12 at 2:10

2 Answers

up vote 1 down vote accepted

You're trying to assign a raw pointer to a QSharedPointer in the line

m_flags = new AccessFlags();

You probably want something like

m_flags = QSharedPointer<AccessFlags>(new AccessFlags);
share|improve this answer

Consider using std::shared_ptr instead QSharedPointer if you work with modern C++11 compiler (e.g. GCC 4.6 or above and MSVC 10.0).

First of all, it's a standard and second thing, you could use std::make_shared to init your pointer which can be faster! (For example, in MSVS2010/2012 allocation occurs only once for make_shared instead two allocations: one for new and one for internal counter).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.