Smart pointer class implementing shared ownership

learn more… | top users | synonyms (2)

5
votes
1answer
53 views

make_shared and emplace functions

I was trying to find some easy way to emplace elements in a std::vector<std::shared_ptr<int>> but couldn't come with anything. std::shared_ptr takes pointers as parameters, so I can still ...
0
votes
1answer
24 views

C++/CLI “could not import member” warning when using shared_ptr as argument

I have the following interface in C++/CLI: public interface class ISharedPtrInterface { void PrintSharedPtr(std::shared_ptr<std::wstring> ptr); }; Which is implemented as follows: public ...
1
vote
1answer
88 views

Using std::shared_ptr to share data between producer/consumer threads

I am trying to use std::shared_ptr to point to the data being produced by one thread and consumed by another. The storage field is a shared pointer to the base class, Here's the simplest Google Test ...
2
votes
4answers
56 views

Forward declarations and shared_ptr

I'm trying to refactor my code so that I use forward declarations instead of including lots of headers. I'm new to this and have a question regarding boost::shared_ptr. Say I have the following ...
2
votes
1answer
145 views

Is it possible to downcast shared_ptr without copy?

#include <memory> struct a {}; struct b : public a {}; std::shared_ptr<b> get() { std::shared_ptr<a> temp(new b); return std::static_pointer_cast<b>(temp); // atomic ...
-3
votes
2answers
79 views

Polymorphism with smart pointers?

I've searched SO a bit but couldn't find anything that answers correctly my problem (I've read this, this and this ) I'm currently trying to use smart pointers with polymorphism. When I try to ...
-1
votes
1answer
94 views

c++ vector of shared pointer. If casted outside of vector, will it change the pointer in vector?

I have a base class Base and 2 derived classes Child_A and Child_B. By the time an object My_Object is instantiated (as a shared pointer), I don't know it's Child_A or Child_B. So it is instantiated ...
-2
votes
0answers
60 views

Destructor is not called [closed]

I have the following scheme in my application (simplified): class CLauncher_Base { public: CLauncher_Base() {} virtual ~CLauncher_Base() = 0 {}; }; class CLauncher : public ...
0
votes
1answer
65 views

sort on a vector of pointers changes data in a copy of the vector?

I have a vector of pointers to objects, and at some point, making a second vector with sub-elements of that vector. Now, sorting the original vector changes the elements in the second vector (there ...
0
votes
1answer
42 views

Boost shared pointer “runtime error” after it gets end of scope

I am practicing with boost and now I am testing boost shared pointers. I have a Util class which can read files. After I read the file, my "Read" method gives back a boost::shared_ptr which points to ...
1
vote
3answers
57 views

Confirmation of thread safety with std::unique_ptr/std::shared_ptr

My application has an IRC module that essentially is a normal client. Since this is heavily threaded, I stand the risk of a plug-in retrieving, for example, a users nickname - it is valid at the time, ...
-1
votes
2answers
85 views

Why shared_ptr<T> expects copy/move constructor in T?

I have the following code: #include <memory> using namespace std; template<typename U> class A; template<typename U> class B { private: shared_ptr<const ...
1
vote
3answers
45 views

boost::shared_ptr error at end of class

class SomeData{}; typedef boost::shared_ptr<SomeData> data_ptr; class ABC { public: ABC(){} ~ABC(){cached_ptr.reset(); } data_ptr get_ptr() {data_ptr x; return x;} // it ...
1
vote
3answers
69 views

Copy boost::shared_ptr

typedef boost::shared_ptr<SomeData> data_ptr; data_ptr cached_ptr; // class member bool someWork(data_ptr& passed_ptr) { // must copy passed_ptr = cached_ptr under some conditions // ...
-2
votes
2answers
85 views

Linked list with smart pointers

Out of boredom I've decided to mess around with the overused code: #include <iostream> #include <cassert> #include <memory> struct Node { Node* next; int val; }; int ...
0
votes
1answer
49 views

Compilation error when creating template & boost::shared_ptr based generic factory

I am using c++98 unfortunately. template <class bT> class Creator { public: virtual bT* create() = 0; }; template <class bT> struct CreatorPtr { typedef boost::shared_ptr< ...
2
votes
2answers
72 views

Cannot dynamic cast when using dynamic_pointer_cast

Why does this code not work? std::shared_ptr<Event> e = ep->pop(); std::shared_ptr<TrackerEvent> t; t = std::dynamic_pointer_cast<TrackerEvent>(e); I get the following error: ...
0
votes
0answers
69 views

initialized pointers are not passed through constructor

I have two classes server and Broker . server is a member in Broker and some of its members are initialized when Broker members are initialized. It is simple if you look at their constructors and some ...
3
votes
3answers
170 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 ...
-2
votes
1answer
47 views

Arrays and smart pointers [closed]

1.1) Is there a possibility of a memory leak when using std::vector, QVector, boost::array (not quite understand the difference between them in the use of memory and what are the advantages of each)? ...
6
votes
6answers
109 views

Const correctness with objects containing shared_ptr

Consider the object: class Obj { public: Obj() : val(new int(1)) {} int& get() {return *val;} const int& get() const {return *val;} private: ...
5
votes
1answer
149 views

std::shared_ptr not working with range for

I'm trying to iterate over a temporary object in a range for loop. It looks like the object gets desctucted before the loop begins executing. Is this a standard compliant behaviour? I'm using gcc 4.8. ...
2
votes
3answers
113 views

Shared pointers and raw pointers in same container

I need to populate container with shared pointers and raw pointers at same time. I guess shared_ptr<T> may be forced to behave like T*, if constructed with no-op deleter and no-op ...
1
vote
1answer
50 views

compilation error with std::priority_queue derived class using std::shared_ptr

I derived from std::priority_queue to implement a few specialized methods. One of these methods somekind of a fixed queue when I add an element and the queue is full, the smallest element is dropped ...
0
votes
0answers
111 views

std::shared_ptr & boost::shared_ptr difference

I've the following code: // interface.h #ifndef INTERFACE_H #define INTERFACE_H #include <memory> class IInterface { public: virtual ~IInterface() = 0; virtual void ...
7
votes
3answers
455 views

C++11 When clearing shared_ptr, should I use reset or set to nullptr?

I have a question about C++11 best practices. When clearing a shared_ptr, should I use the reset() function with no parameter, or should I set the shared_ptr to nullptr? For example: ...
0
votes
1answer
68 views

Copy-on-write pointer object in C++

I tried to follow this article http://en.wikibooks.org/wiki/More_C%2B%2B_Idioms/Copy-on-write on how to implement copy on write pointers in C++. The problem is, it doesn't work for me. The crux of ...
2
votes
1answer
68 views

shared boost::shared_ptr<> variable is thread safe? [duplicate]

boost::shared_ptr<A> g_a; void func1(boost::shared_ptr<A> v) { g_a = v; } void func2() { boost::shared_ptr<A> a = g_a; // a is good? } When func1() and func2() is ...
0
votes
1answer
135 views

Passing a variable between callback and main

I'm using ROS with C++ and after receiving data from a topic in void callback(), I need to pass this data to a variable in int main(). What I've found out so far is that I can do it using a boost ...
0
votes
1answer
101 views

Global smart pointer is not cleaning up properly

I have a c++ interface, and the derived class of that interface in one DLL, I am using the class in another process by including the interface header file, and importing a factory function that ...
3
votes
5answers
61 views

Does adding a reference to a shared ptr increase the reference count

Suppose I have a method as such void foo(const boost::shared_ptr<Pfoo>& rx) { myvector->push_back(rx); } I read that when a boost::shared_ptr is passed as a reference its reference ...
0
votes
3answers
33 views

Storing boost_shared pointers in a vector - Is it expensive

I know that vectors tend to make a copy of all objects pushed into them. My question is whether it would make sense to store a pointer to a boost::shared_ptr in a vector rather than the shared ptr ...
6
votes
4answers
220 views

Smart pointer wrapping penalty. Memoization with std::map

I am currently in the middle of a project where performance is of vital importance. Following are some of the questions I had regarding this issue. Question1 My project involves plenty of ...
0
votes
1answer
40 views

How to assign a boost::tuple to boost::shared_ptr

In my code I have something like this shrd_ptr_obj st = boost::make_shared<Myobj>(); Myobj tp = boost::make_tuple(0,0,0,0,0 ); How do I make st point to tp ?
1
vote
2answers
92 views

Why does enable_shared_from_this lack direct access to the embedded weak_ptr?

I want to use boost signals2 with automatic connection management in a multithreaded application. My class inherits from enable_shared_from_this<> and i want to connect a member method from within ...
2
votes
1answer
74 views

Why is my program crashing in boost::enable_shared_from_this<>/boost::shared_ptr<>?

I'm trying to hunt down why a program is crashing in shared_ptr. #0 0x00007fff90723212 in __pthread_kill () #1 0x00007fff93415b54 in pthread_kill () #2 0x00007fff93459dce in abort () #3 ...
1
vote
1answer
41 views

boost::shared_* with copy constructor and assignment operator

I have a class that contains a boost::shared_array member. The other members are not dynamic - just a bunch of ints, no pointers. I would expect that the default copy constructor for such a class ...
0
votes
1answer
42 views

Passing shared_ptr via variable argument list

Is this possible to do and how would I pass the shared_ptr(s)? I found some related question (C++ variable number of arguments) but it does not fully address my question. I have tried a few ways to ...
5
votes
2answers
250 views

Temporary read-only copy of unique_ptr

I'm pretty new to C++11's smart pointers, and I'm trying to use them effectively in a project. In my project, I have a lot of functions that take a const reference to a vector of unique_ptr, do some ...
4
votes
1answer
63 views

C++ non intrusive boost serialization of a boost::smart_ptr

I'm trying to serialize a custom class that I cannot modify using boost::serialization, and I need to keep the logic/computational code apart from the serialization part. It has some protected and ...
0
votes
3answers
54 views

Semantic of empty shared_ptr

I've noticed a strange fact about shared_ptr int* p = nullptr; std::shared_ptr<int> s(p); // create a count (1). std::shared_ptr<int> s2(s); // count go to 2. assert(s.use_count() == 2); ...
1
vote
1answer
67 views

make_shared how to use non default memory management

I have a question about the standard.. So let's say I have pools that manage my memory allocation.. I wanted to use shared_ptr and checked out the API.. As expected, I see that for shared_ptr I ...
3
votes
2answers
60 views

Does boost::optional trigger a ref count on shared_ptr?

I'm trying to get a function to return a maybe type from my map. So something like this: boost::optional<V> findValue(const K& key) { boost::optional<V> ret; auto it = ...
2
votes
1answer
183 views

shared_ptr not reporting referenced object deletion

I'm running this code in MS Visual Studio 10, #include <iostream> #include <memory> using namespace std; class A { int i; public: A(int j) : i(j) {} ~A() {} void fun() ...
0
votes
3answers
46 views

boost::shared_pointer exit without calling release

I am working with a program where my code calls a third party library which uses boost and shared_pointers to create a large and complex structure. This structure is created in a method that I call ...
0
votes
3answers
190 views

Error “field has incomplete type”

I'm trying to write IplImage wrapper. Here is my code: class DrawingDetector { public: typedef boost::shared_ptr<IplImage> ipl_image_ptr_t; DrawingDetector(){} ...
1
vote
1answer
49 views

Is there a better way of allocating/copying shared_array

I have a stream object which provide GetBuffer() and GetBufferSize() methods. The GetBuffer method returns a raw uint8_t pointer. I want to pass (by value) this buffer to another object which expects ...
1
vote
1answer
61 views

how can you see if shared pointers are equal to each other

i'm trying to implement a Flyweight design in c++. This is what I have so far. std::unordered_map<std::pair<Gdiplus::Color, float>, std::shared_ptr<Gdiplus::Pen>> mymap; ...
0
votes
1answer
34 views

passing properties of an object as a string

I have an unordered map that is supposed to check if a pen exists given the color, and the width of the pen. I'm currently trying to do a lookup by string. If it’s already in the map, that means I ...
-1
votes
2answers
55 views

Basic - shared_ptr to vector of vectors of values

I have a vector of a vectors of objects containing just a few integers. The outer vector holds hundreds of vectors, those hold thousands to hundreds of thousands of Data objects. I am using a ...

1 2 3 4 5 17