2
votes
7answers
166 views
c++ problem with polymorphism and vectors of pointers
Consider the following example code:
class Foo
{
};
class Bar : public Foo
{
};
class FooCollection
{
protected:
vector<shared_ptr<Foo> > d_foos;
};
class BarCo …
6
votes
4answers
567 views
static_cast with boost::shared_ptr?
What is the equivalent of a static_cast with boost::shared_ptr?
In other words, how do I have to rewrite the following
Base* b = new Base();
Derived* d = static_cast<Derived* …
2
votes
3answers
92 views
shared_ptr with templates
Hello!
If I want to create a smart pointer to struct I do that:
struct A
{
int value;
};
typedef boost::shared_ptr<A> A_Ptr;
So, I can write the following:
A_Ptr …
1
vote
7answers
279 views
How do I know who holds the shared_ptr<>?
I use boost::shared_ptr in my application in C++. The memory problem is really serious, and the application takes large amount of memory.
However, because I put every newed object …
2
votes
2answers
80 views
Get Eclipse CDT + boost::shared_ptr<T> to work with syntax completion?
How to get Eclipse CDT to treat shared_ptr as T * for syntax completion?
I'm using windows in this instance. I have 1.39 in the "Program Files" folder. I am about to try 1.37.
I …
1
vote
1answer
87 views
Deleting a shared pointer (C++)
I have a pointer to a QScriptEngine that I'm passing through the overloaded class constructor of class Evaluator and assigns it to QScriptEngine *engine_ (class Property subclasses …
5
votes
4answers
111 views
Using shared_ptr in dll-interfaces.
I have an abstract class in my dll.
class IBase {
protected:
virtual ~IBase() = 0;
public:
virtual void f() = 0;
};
I want to get IBase in my exe-file which lo …
1
vote
6answers
157 views
How to design an efficient image buffer in C++?
I am trying to create a data buffer, more specifically, an image buffer, which will be shared among multiple modules. Those modules only reads from the buffer and don't communicate …
1
vote
4answers
115 views
How to fix heap corruption
I've tried to build a very minimalistic memory read library to read some unsigned ints out of it. However, I run into a "HEAP CORRUPTION DETECTED" error message when the ReadUnsign …
0
votes
4answers
125 views
C++ reference to a shared_ptr vs reference
All,
I recently posted this question on DAL design. From that it would seem that passing a reference to an object into a function, with the function then populating that object, …
2
votes
6answers
138 views
Decent shared_ptr implementation that does not require a massive library?
I am taking a C++ programming class right now on GIS Programming. I am really starting to get alot of headaches from dealing with proper memory management. Considering at any time …
1
vote
3answers
150 views
Manually incrementing and decrementing a boost::shared_ptr?
Is there a way to manually increment and decrement the count of a shared_ptr in C++?
The problem that I am trying to solve is as follows. I am writing a library in C++ but the int …
1
vote
2answers
274 views
boost::shared_ptr and multithreaded access
Hi!
I'm trying to implement a multithreaded framework, in which output objects are created at the end of every frame that my networking thread runs, so that another thread can, at …
1
vote
2answers
242 views
getting a normal ptr from shared_ptr ?
i have something like shared_ptr t(makeSomething(), mem_fun(&Type::deleteMe))
i now need to call C styled func that require a pointer to Type. How do i get it from shared_ptr?
1
vote
6answers
972 views
Fully thread-safe shared_ptr implementation
Does anybody know of a fully thread-safe shared_ptr implementation? E.g. boost implementation of shared_ptr is thread-safe for the targets (refcounting) and also safe for simultane …
