Smart pointer class implementing shared ownership
0
votes
1answer
68 views
How do you get std::make_shared in XCode? [closed]
In a .cpp file in XCode, I have #include <memory> and I have used std::shared_ptr fine, but when I try std::make_shared<MyClass>(MyClass()), it complains:
No matching function for call ...
0
votes
1answer
215 views
Using boost smart pointers in std::map
I have been messing around with using smart pointers in my latest C++ endeavor for memory management. Part of this is that I am using a series of maps to tie a string to a class (called an ...
1
vote
1answer
237 views
Can you allocate an array with something equivalent to make_shared?
buffer = new char[64];
buffer = std::make_shared<char>(char[64]); ???
Can you allocate memory to an array using make_shared<>()?
I could do: buffer = std::make_shared<char>( new ...
1
vote
2answers
146 views
convert vector<boost::shared_ptr<Foo> > to vector<Foo*> , is it possible?
I have a function that takes, as an argument, an stl vector of pointers to Foo.
However, I also have objects which are shared pointers to the same class Foo. I would like to be able to call this ...
1
vote
2answers
137 views
Casting normal pointer to std::shared_ptr doesn't seem to work
#include <SFML/Graphics.hpp>
#include <memory>
#include <map>
int main(int argc, char **argv)
{
std::map <const std::string, std::shared_ptr<sf::Texture> > resources;
...
1
vote
3answers
371 views
boost::shared_ptr and nullptr in default template function argument
So, here is my class and its function:
template <class T>
class cResourceManager
{
public:
bool add(const std::string & key, boost::shared_ptr<T> ptr = nullptr);
private:
...
1
vote
2answers
77 views
Identifying which Base Class shared_ptr has been passed into a Super Class shared_ptr vector
I am working on a C++ project, specifically implementing a shunting yard algorithm.
I have a function that creates a vector of shared_ptr's of type super class, but the classes that are being pushed ...
1
vote
1answer
97 views
Why does boost::shared_ptr bother with atomic reference counting when it's not thread-safe?
This is more of a curiosity question, but as boost::shared_ptr is not thread-safe, why would it then bother using atomic reference counting? Since the destructor is not safe to use across threads, ...
0
votes
3answers
57 views
Subdata (substring-like?) of a shared_ptr
I have a data buffer stored in a shared_ptr<void>.
This buffer is organized in several encapsulated layers so that I end up with:
-----------------------------------...
- Header 1 | Header 2 | ...
1
vote
2answers
159 views
enable_shared_from_this: Sharing the use count in member
Say I have two classes: Thing and Holder:
struct Thing :
std::enable_shared_from_this<Thing>
{
std::shared_ptr<Thing> self()
{
return shared_from_this();
}
};
...
0
votes
1answer
82 views
boost shared_ptr copy issue
my question is how do I assign the smart pointer to the other ? I am not sure how to get around the temporary variable either ?
typedef boost::asio::ip::tcp::socket TBoostSocket;
typedef ...
1
vote
1answer
63 views
How to get a reference to an object having shared_ptr to it?
How to get a reference to an object having shared_ptr<T> to it? (for a simple class T)
2
votes
4answers
178 views
Delete an object with a protected destructor
I have to write a shared pointer for class, and among many other things that it has to do is make sure it can delete the object that it is pointing to.
How can I code a solution that will work with ...
1
vote
1answer
85 views
pass secure socket as normal socket in boost
I have these typedefs the problem is I need pass a secure socket as TSocket will a direct cast from TSecureSocket to TSocket work ? or is there another solution? depending on the port I will make the ...
1
vote
1answer
229 views
std::shared_ptr for value in std::map destroying my object
I had a problem with some of my code with the following function calls:
User::User(const Socket::SocketAddress& addr) {
address = addr;
_usersListBySession.insert(std::pair<uint32_t, ...
-1
votes
1answer
70 views
specify a custom deleter for shared_ptr but meets error
I have searched in stackoverflow for how to specifiy a custom deleter for shared_ptr, and these are what I found:
boost::shared_ptr<T> ptr( new T, std::mem_fun_ref(&T::deleteMe) );
...
4
votes
3answers
136 views
Return a const vector of const shared pointers to const objects
Given the following class based on containers of shared pointers,
class Foo;
class Bar {
public:
// ...
const std::vector<boost::shared_ptr<const Foo> >& getFoos() const { return ...
3
votes
4answers
228 views
How can I erase a shared_ptr from vector
Like the codes below, m_vSprites is a vector of shred_ptr, if one of his elements update fail, I would like to erase it from the vector, but my codes crash when I would like to using erase. But I ...
1
vote
1answer
363 views
Apple and shared_ptr
I seem to be missing something here. I moved from boost::shared_ptr to std::shared_ptr. shared_ptr was part of TR1 back in the mid-2000s, and it should be available everywhere in 2012.
Trying to use ...
2
votes
3answers
260 views
Ref counted smart pointer's assignment operator
despite the ocean of smart pointer questions out there, I seem to be stuck with one more. I am trying to implement a ref counted smart pointer, but when I try it in the following case, the ref count ...
0
votes
3answers
146 views
C++ shared_ptr based singletone what causes link error?
So I try this code:
#ifndef TRANSMITTER_H
#define TRANSMITTER_H
class connector
{
public:
static boost::shared_ptr<connector> Instance(){
if(!instance)
{
...
1
vote
1answer
73 views
A map of boost:signals with boost:function defintion
I am trying to create a simple manager that will map error codes to functions. But since a map copies the values and a signal is noncopyable that is not a solution. I cannot use a map of shared_ptr ...
1
vote
2answers
341 views
Passing shared_ptr<Derived> as shared_ptr<Base>
What is the best method to go about passing a shared_ptr of a derived type to a function that takes a shared_ptr of a base type?
I generally pass shared_ptrs by reference to avoid a needless copy:
...
0
votes
2answers
225 views
Learning c++11 smart pointer, it won't let me use implicit conversion like a pointer can?
I have a ISceneNode interface and from that a SceneNode base class.
From the SceneNode class derive MeshNode, AnimNode, LightNode, CameraNode, ect...
Now I have an actor class that through a method ...
3
votes
1answer
198 views
Moving a std::shared_ptr crashes the program
I have to build a small OpenGL wrapper for a work. I'm trying to avoid writing copy constructors and copy assignment for all my classes.
The one way to be really lazy and never write copy is to use ...
6
votes
3answers
177 views
How can I create a shared_ptr to a member?
I'm not sure if I'm suffering more from a documentation error or a headache, so...
What I want to do is create a shared_ptr that shares ownership with another, but which references a member of the ...
1
vote
1answer
86 views
How to reset a shared_ptr?
I'm trying to do this (using a custom class, and STL shared_ptr from #include <memory>):
shared_ptr<Label> BufLbl;
BufLbl = allocate_shared<Label>(Label());
BufLbl->YCoord = 3;
...
3
votes
1answer
206 views
Do I have to use weak_ptr.lock() just to test if it points to a valid object?
It seems kind of inefficient to have to create a temporary shared_ptr just to see if the weak_ptr is pointing to a valid object. I don't want to even access the object. This is because I have a ...
0
votes
1answer
310 views
Boost shared_ptr assert fails but the value is not NULL
in one of my applications I get an assert fail exception in the assert inside the boost shared_ptr dereference operator:
T * operator-> () const // never throws
{
BOOST_ASSERT(px != 0); ...
0
votes
1answer
20 views
Determining shared pointer Type class Incomplete or complete and the reason of crash
A class constructor has the declaration like this...
Class A:
{
public:
A(int a, SharedPtr<class T>sp = SharedPtr<class T>());
~A();
}
Now from another class I am destroying this ...
4
votes
2answers
234 views
How to combine the use of std::bind with std::shared_ptr
I need to do something like this more than often:
AsyncOperation * pAsyncOperation = new AsyncOperation();
auto bindOperation = std::bind(&AsyncOperation::operator(), std::ref(*pAsyncOperation));
...
2
votes
1answer
203 views
How do I extend C++ boost list container to implement a thread safe implementation using boost upgrade mutex?
I wrote some sample test code to verify the functionality of using boost upgrade mutexes to implement a read/write mutex lock over a boost list container. I have ten threads, 5 are readers, 5 are ...
0
votes
3answers
57 views
delete this architecture and UB
#include <memory>
struct B;
struct A
{
std::shared_ptr<B> field1_;
A():field1_ (std::make_shared<B>()){}
};
template<class A>
struct B: ...
3
votes
2answers
266 views
std::atomic load method decreases the reference count when used with std::shared_ptr
I would like to use a std::atomic<std::shared_ptr> in my code so that the shared_ptr can be atomicaly updated, but I have a problem when accessing the shared_ptr. The load() method on the atomic ...
0
votes
2answers
71 views
Implementing std::equal with tr1::shared_ptr types
Could not easily find a solution online...
I have something similar to the following.
class Color {
public:
Color(std::string n) : name(n) {}
typedef std::tr1::shared_ptr<Color> Ptr;
...
0
votes
2answers
197 views
Boost Shared Pointers and Memory Management
I began using boost rather recently and am impressed by the functionality and APIs provided.
In using boost::shared_ptr, when I check the program with Valgrind, I found a considerable number of ...
2
votes
2answers
204 views
How to convert an object instance to shared_ptr instance
Suppose I had two shared_ptr types such as
boost::shared_ptr<ObjA> sptrA;
boost::shared_ptr<ObjB> sptrB;
Now suppose that sptrA->SomeMethod() returned a simple ObjB type (not a ...
0
votes
4answers
131 views
shared_ptr- how to ignore first reference?
I am writing resource manager. That's how it looks like:
#pragma once
class IObject;
typedef std::shared_ptr<IObject> resource_ptr;
typedef std::map<std::string, resource_ptr> ...
0
votes
1answer
45 views
boost::shared_ptr references?
I need something similar to this:
boost::shared_ptr<A> _class(...);
//Start async operation
boost::aiso::post(_class);
_class.relase();
while(_class) // not working
{
LOG("Wait for ...
4
votes
2answers
167 views
std::bind with pointer to a function object
Given a pointer to a function object:
std::shared_ptr<std::function<double(double)>> f;
is there a built-in construct in C++11 that allows be to use this pointer in a std::bind ...
3
votes
2answers
160 views
Cache Optimization and Polymorphism
Suppose I have a calculator class that implements the Strategy Pattern using std::function objects as follows (see Scott Meyers, Effective C++: 55 Specific Ways to Improve Your Programs and Designs):
...
6
votes
1answer
585 views
shared_ptr to an array : should it be used?
Just a small query regarding shared_ptr.
Is it a good practice to use shared_ptr pointing to an array?
e.g shared_ptr<int> sp(new int[10]);
If not then can anyone please tell me why? One ...
1
vote
3answers
150 views
Conditional initialization of boost::shared_ptr variable with RAW pointer
I need to initialize a boost::shared_ptr based on a condition. Sample code is below that depicts the scenario i ma looking for.
class A{};
class B:public A{};
class C:public A();
void some_func(int ...
1
vote
2answers
159 views
Returning a shared_ptr from a function
I'm very new to C++11, 'still very much experimenting with the extensions. I find the auto keyword very convenient, particularly when dealing with template variables. This means that given
...
1
vote
1answer
210 views
Proper use of boost::shared_ptr in a list
I have a question related to boost::shared_ptr<> in C++. I am currently willing to perform a smart deletion of the items of my list:
If the item is in use, don't do anything, and delete it ...
3
votes
1answer
186 views
Sane design for a class holding a shared resource
Consider the following simplified example of a class holding a shared resource:
class array
{
typedef std::array<float, 1000> resource;
public:
// default constructor, creates resource
...
0
votes
2answers
285 views
using std::shared_ptr with a protected constructor\destructor [duplicate]
Possible Duplicate:
How do I call ::std::make_shared on a class with only protected or private constructors?
I want to create a shared pointer to a class, and have a factory method that ...
5
votes
3answers
218 views
Having a vector of weak_ptr, want to return a vector of shared_ptr
I'm currently working on a big project and I need to use weak_ptr instead of shared_ptr.
Here is my problem.
I have a class named House with an attribute: ...
0
votes
2answers
257 views
c++11 shared_ptr + Boost::Serialization
I am in need of a Boost::Serialization specialization for std::shared_ptr.
I am writing a program that sends objects over Boost::Asio and many of those objects use shared_ptrs internally. Using a ...
1
vote
0answers
58 views
Dependency tracking in C++: List of all objects dependent on a single object
I need to develop a library where I need to track list of objects dependent on another object. Boost library provides some features like shared_ptr and intrusive_ptr which allow us to track ...
