Smart pointer class implementing shared ownership

learn more… | top users | synonyms (2)

1
vote
1answer
37 views

shared_ptr error expression must have arithmetic, enum, pointer

I'm trying to check if a shared_ptr didn't call shared_ptr.reset() I have a std::shared_ptr<Shape> m_shape; and I'm trying to do if(m_shape.reset()==false) { dothis(); } i want ...
-1
votes
1answer
39 views

shared pointers and gdiplus issue [closed]

I have a function that I'm trying to use in order to set a shared pointer equal to another. The arguments that I pass in the function are I have declared a variable Gdiplus::Pen pen inside my main. ...
0
votes
2answers
74 views

c++ shared_ptr with std::function or double (*SOME_NAME)(double);

Q1) Given that we have typedef double (*function_t)(double); or typedef std::function<double(double)> function_t; how do we define std::shared_ptr<function_t> ptr_func = ??? for ...
0
votes
1answer
94 views

C++ shared pointer issue [closed]

I'm trying to create a set function that will take in a shared pointer and set it equal to another shared pointer. This is the shared pointer and the set function that i have declared on my header ...
29
votes
2answers
3k views

Using smart pointers for class members

I'm having trouble understanding the usage of smart pointers as class members in C++11. I have read a lot about smart pointers and I think I do understand how unique_ptr and shared_ptr/weak_ptr work ...
1
vote
2answers
67 views

How can I set a shared pointer to a regular pointer

I'm completely news to shared pointers. I'm trying to initialize one by doing std::shared_ptr<Gdiplus::Pen> pen(new Gdiplus::Pen); but it says that it needs a type specifier.... I am also ...
1
vote
3answers
41 views

GCC shared_ptr Template Error

The following function #include <memory> template<typename T> std::shared_ptr<typename T> Tail(const std::shared_ptr<typename T>& cont, size_t n) { const auto ...
2
votes
1answer
55 views

Give a default value for shared pointer argument [duplicate]

The following code gives a compilation error in VS2010, which support shared_ptr and make_shared function. Why and how to correct it? #include <memory> class A { ...
0
votes
1answer
42 views

'boost shared_ptr' and 'boost lock' together = messed up

I am new to both concepts shared_ptr and mutex (boost or not boost). I am trying to use it in my classes : typedef boost::shared_mutex Lock; typedef boost::unique_lock< Lock > WriteLock; ...
1
vote
2answers
62 views

Having a single method in a base class able to allocate for child classes

I'm trying to have a common base/helper class that allocates shared_ptrs for the calling class, but I'm having problems getting it to work in derived classes. #include <memory> ...
1
vote
1answer
66 views

Replacement of Poco::AutoPtr with boost

I am trying to replace Poco::AutoPtr with some alternative in boost. Here is what I have discovered so far: What I have: below classess are being used with Poco::AutoPtr. They need to implement ...
3
votes
2answers
79 views

Double inheritance of enable_shared_from_this

I have an object (Z) which derives from two other objects (A and B). A and B both derive from enable_shared_from_this<>, respectively enable_shared_from_this<A> and ...
7
votes
3answers
264 views

Element of shared_array as shared_ptr?

If I have a boost::shared_array<T> (or a boost::shared_ptr<T[]>), is there a way to obtain a boost::shared_ptr<T> which shares with the array? So for example, I might want to write: ...
2
votes
3answers
135 views

How to deep copy full object behind boost::shared_ptr<T> into shared_ptr pointing to new location?

How to copy full object behind boost::shared_ptr<T>: are there memcopy options (just create memory clone), or we shall create copy constructor?
1
vote
1answer
72 views

How to wrap a raw pointer into a shared_ptr and prevent shared_ptr from deleting the object?

I need to wrap a raw pointer into a shared_ptr in order to pass it to a function. The function doesn't hold any reference to the input object once it returns. { MyClass i; ...
3
votes
2answers
76 views

shared_ptr initialization

A member is defined as std::shared_ptr<std::array<std::string, 6> > exit_to; which points to additional data shared among others. When try to initiate the pointer "exit_to". The correct ...
0
votes
2answers
61 views

How to cast vector<T>::iterator (on the heap) as shared_ptr<T>

I'm afraid that each existing question/answer in this area seems to be subtly different: I have a shared_ptr<vector<Point>> profile which is looped using an iterator. I would like to ...
4
votes
1answer
159 views

Move ownership from std::shared_ptr to std::unique_ptr

I have a class A which has a field of type std::unique_ptr: class A { public: std::unique_ptr pointer; // class body }; And somewhere in code, I'm using few std::shared_ptrs which point to the ...
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 ...
2
votes
0answers
62 views

Serialization of boost::shared_ptr through a custom archive

I'm trying to serialize a boost::shared_ptr to a custom archive. The main problem I'm facing is that the boost::serialization code for shared_ptr requires the archive to have both a 'reset' and an ...
2
votes
2answers
72 views

Which type of pointer to use to implement shared access to elements of a set?

In order to make the discussion clear, I'm going to describe the problem in a very general manner, i.e. I will neither provide names of real classes nor will I describe the domain/context (however, I ...
0
votes
1answer
122 views

atomic_load/atomic_store on std::shared_ptr in VC11 - why the global spinlock?

I'm trying to understand exactly how to manage shared pointers safely with atomic operations. Turns out VC11 (Visual studio 2012) has support for C++11 and thereby can permit read/write races on ...
3
votes
2answers
79 views

Factory function which returns object of specific type - how to do it in better way

I have 3 classes B, C, D, that derive from one base class A: class A { // body }; class B : public A { // body }; class C : public A { // body }; class D : public A { // body }; I want to create ...
0
votes
4answers
63 views

about shared_ptr

Just want to clarify regarding shared_ptr int main(){ typedef std::tr1::shared_ptr<Foo> _foo; _foo obja(new Foo()); Foo *objb = obja.get(); // delete objb; //deleting objb will ...
2
votes
3answers
87 views

Searching in a set of shared_ptr<QString>

I have an object: class Object { public: boost::shared_ptr<QString> const& name() const {reutrn _name;} private: boost::shared_ptr<QString> _name; }; And a multi_index set ...
0
votes
2answers
54 views

Smart Pointers pointing to new object

I created a program like below void Encode(shared_ptr<string>str) { shared_ptr<string> n(new string()); //I am creating the string pointed by n here by analyzing the string ...
1
vote
1answer
37 views

Replace all references to a object in a shared_ptr<T>

Is it possible to replace the object where multiple instances of a shared_ptr refer to? Maybe I am not really clear, so I'll give an example: shared_ptr<Base> a = new Derived1(); auto b = a; ...
0
votes
2answers
55 views

How to switch off correctly?

This might be a case for the switch-off rule explained in C++ coding standards and I am wondering if I am doing it correctly. I am wondering because I still have if-clauses in the switching function. ...
1
vote
1answer
34 views

Shared Pointer In Manager class corrupted/incorrect?

Apologies if this is obvious, and I'll try and provide a minimal example as I've been banging my head over this for the last hour and I'm certain it's something simple. I have the following: class ...
1
vote
3answers
81 views

vector of shared_ptrs, returning it from a function and modifying it

Essentially, I want 2 of my classes to be sharing some data, which i want to have as a vector of shared_ptr objects. I have cut down my code into the following simple compilable example. I want ...
2
votes
3answers
248 views

C++11 cast const iterator pointing to container of shared_ptr objects

I have an STL container whose element type is const std::shared_ptr<MyClass>. I want to supply two iterator types to the user: MyContainer::iterator typedefed as std::vector<const ...
3
votes
1answer
69 views

Chaining calls together with shared pointers

This is probably a "best practice" question, but I wanted to be sure I was going about this the right way. I have the following class: typedef boost::shared_ptr<MyClass> MyClassPtr; class ...
1
vote
2answers
55 views

What is the correct way to “predefine” and use namespaces and std::shared_ptr?

I have been having a hard time trying to find anything similar to this question, so instead I will ask here. I have a project with a dozen or so source/header files. The main problem I am having is ...
0
votes
2answers
91 views

Is heap allocated object guaranteed to be alive when it is returned from a function with std::shared_ptr?

I am learning C++. I just learned std::shared_ptr can be used for managing heap-allocated object as in reference-counting manner. Currently my compiler (Xcode/Clang/C++11) shows exact behavior what I ...
1
vote
1answer
182 views

boost tcp socket with shared_ptr c++

I am trying to wrap the boost TCP using a new class in c++. Things work like a charm while I call the boost function directly. However I fail to call socket close while the close is wrap in a class ...
0
votes
1answer
64 views

Passing out shared pointer to this from destructor

I have an object, BagOfThings, that stores a set of Things and a list of BagOfThingsListeners, which want to know when a Thing is added or removed from the BagOfThings they've been added to. Like ...
0
votes
0answers
109 views

Crash in optimized build that doesn't happen in debug build [closed]

I have the following code: Eigen::Matrix<double, 1, 1> asMatrix(double x) { Eigen::Matrix<double, 1, 1> m; m(0,0)=x; return m; } template<int K> struct DistParams { ...
0
votes
0answers
24 views

template parameter of shared_ptr in dll exported class

I made some class which owns shared_ptr member like below. #include <memory> template<typename T> class a { T m; }; class b; // forward declare class __declspec(dllexport) test { ...
1
vote
2answers
69 views

Atomically accessing resources stored in a map

I want to store some std::shared_ptr to C++ class instances in a map, e.g. a std::map, using an integer key. However, I need this map to have two properties: If the key doesn't exist, then return an ...
0
votes
0answers
20 views

Will gcc optimize weak_ptr.lock().get() to avoid refcount increment/decrement?

I have an object managed with shared_ptr; I also have weak_ptr associated with this shared_ptr; I know the pointer is not dangling. I would like to obtain the raw pointer as efficiently as possible. ...
0
votes
1answer
98 views

Luabind: Can't return shared_ptr

I'm trying to return an std::shared_ptr from a method bound with Luabind, but it doesn't seem to recognize the type. Luabind code: module(lua) [ class_<Character, BaseEntity, ...
0
votes
0answers
16 views

WSASend and Shared_PTR

I am trying to use Shared_PTR as shown. Its not working as expected. Anythoughts or am I trying something wrong ? struct IO_DATA : public OVERLAPPED auto pData = std::make_shared<IO_DATA>(); ...
2
votes
4answers
127 views

boost::shared_ptr circular dependency

I have a question, I implemented a tree using different classes at each level. The pointer to the tree items are boost::shared_ptr<>. Because each level stores a pointer to the parent and a ...
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 ...
0
votes
2answers
74 views

boost::shared_ptr - composition relation between two classes

Suppose that I have: two classes: P and C. composition relations between P <>- C, i.e. every instance of P contains an instance of C, which is destroyed when the parent P instance is destroyed. ...
3
votes
1answer
135 views

weak_ptr of a base class, while the shared_ptr is of a derived class?

I have a structure that manages objects that derive from a base class Entity, but does not control their lifetimes. I want this structure to be given weak pointers like weak_ptr<Entity> so that ...
2
votes
1answer
90 views

std::function for method argument, copy or shared_ptr?

I'm attempting to use std::function as a callback handler. Such like this, void some_job( int arg1, std::function<void(int)> & callback ) { callback( process(arg1) ); } In this ...
0
votes
1answer
139 views

c++11 std::shared_ptr + boost::serialization [duplicate]

Hi has anybody already managed to serialize a C++11 std::shared_ptr with boost::serialization. There are lots of obsolete posts out there but none with an acceptable solution. I am not going into ...
1
vote
4answers
217 views

Problems with shared_ptr<T[]> wrapping a dynamic array

I wanted to replace some raw pointers in my class with a std::shared_ptr so that I don't have to worry when I create copies of that class. But the raw pointers point to a dynamic array. Using a ...
0
votes
3answers
47 views

Automatically adding and removing an object from a list

I have a class. When this class is instantiated, I want the instance added to a list. When the object is deleted, I want it removed from the list. So I give the object a shared pointer to itself. I ...

1 2 3 4 5 17