3
votes
3answers
168 views

Is it good practice to bind shared pointers returned by functions to lvalue references to const?

Although it took me a while to get used to it, I now grew the habit of letting my functions take shared pointer parameters by lvalue-reference to const rather than by value (unless I need to modify ...
1
vote
2answers
87 views

Setting std::shared_ptr to point on reference

class a { private: std::shared_ptr <std::string> sptr; public: void set(std::string & ref) { sptr = &ref; //error } }; What's the solution? I need to keep the reference as ...
-1
votes
1answer
97 views

Detect shared_ptr class member reference with g++

Is there a way with g++ to detect when you declare a class member as a (const) reference to a shared_ptr? I can't see a time when this would ever be useful, but if you accidentally declare the member ...
3
votes
6answers
112 views

I have a reference and want to call a function that takes boost::shared_ptr

I have a reference to an object and want to call a function that takes a boost::shared_ptr of this object. If I build a boost::shared_ptr to make the call when my boost::shared_ptr is canceled from ...
-3
votes
2answers
839 views

C++ shared_ptr copy constructor syntax

I have the following C++ code that I'm trying to get to compile (relevant sections follow). I'm having trouble understanding what's wrong with my syntax. I get the error C2664: A(const A&) : ...
1
vote
2answers
117 views

Problem understanding shared_ptr

I have a: template<class K,class V> struct Node { node_ptr parent_;//node_ptr is a shared_ptr<Node<K,V>> node_ptr& get_parent()const { return parent_; } void ...
0
votes
2answers
133 views

References to boost::smart_ptr pointed to object and checking their validity

Given the following: class Curve { public: typedef boost::shared_ptr<Curve> Pointer; // ... private: // ... }; class CurveShift: public Curve { public: CurveShift(const Curve & ...
2
votes
7answers
906 views

Init a shared_ptr of reference ( std::tr1::shared_ptr<class&> )

I'm using a library which returns a reference to me. I need to use this reference as class-attribute. Not being able to initialize the attribute in constructor directly (the lib needs to be inited ...
2
votes
3answers
581 views

boost::shared_ptr question. Why does this work?

In experimenting with this question I created an example that I utterly do not understand. In particular, it highlights my misunderstanding of pointers, references, and the boost::shared_ptr. ...
0
votes
6answers
241 views

Confusion concerning boost::shared_ptr

My question revolves around whether or not I must expose my use of the boost::shared_ptr from my interface and whether or not I should expose raw pointers or references from my interface. Consider ...
1
vote
1answer
292 views

Returning references while using shared_ptrs

Suppose I have a rather large class Matrix, and I've overloaded operator== to check for equality like so: bool operator==(Matrix &a, Matrix &b); Of course I'm passing the Matrix objects by ...