Tagged Questions
-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 ...
2
votes
1answer
94 views
Function overloading with shared pointer argument ambiguity
I want to make overloaded functions that take a shared pointer to a base class and derived classes. It seems to work for references and raw pointers, but not for shared pointers in the case of an ...
3
votes
1answer
138 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 ...
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 ...
2
votes
2answers
259 views
passing vector<shared_ptr<Derived>> to a function expecting vector<shared_ptr<Base>>
I'm facing a problem with the code structure I use, which is as follows (simplified) :
class SPoint
{
public:
SPoint(double x, double y, double z) : _x(x), _y(y), _z(z) {}
protected:
double ...
0
votes
2answers
98 views
C++ Templated Subject Observer Inheritance/Cast Conflict
I am using the example http://www.codeproject.com/Articles/3267/Implementing-a-Subject-Observer-pattern-with-templ to implement a templated subject/observer pattern. However, I am getting annoying ...
2
votes
2answers
112 views
Objects adding and removing themselves from a list
I have a small hierarchy of classes and I'm trying to figure out a simple way of maintaining ownership. Since these objects are residing on the heap and since I hate raw pointers, I figure I'll use ...
3
votes
1answer
301 views
Subclasses and get_shared_from_this()
I need to find a solution to allow a subclass to get its proper smart pointer.
class Parent : public enable_shared_from_this {
...
}
class Child : public Parent {
public Child(){
...
0
votes
5answers
368 views
accessing operator overloading of class which is wrapped by std::shared_ptr
the idea is that I want a class which is wrapped by std::shared_ptr, can still be used
just like they weren't a pointer, for example the operator= which was defined in my class
can still be used after ...
0
votes
1answer
808 views
boost::bind, boost::shared_ptr and inheritance
I'm new with the Boost library, and I got a problam a bit complex for me.
I tried to reformulate it with an example found in previous question that might fit well my problem.
(The previous question is ...
1
vote
3answers
703 views
C++ shared_ptr inheritance memory leak
I have a sitution where I have a shared_ptr to base of a child class.
When the shared_ptr goes to delete the pointer, only the parent destructor is being called.
The parents destructor is virtual, ...
5
votes
3answers
686 views
C++ Overloading a Function Based on shared_ptr Derived Class
There are a lot of SO questions which are similar to this, but I couldn't find precisely what I was looking for. I'm sorry if this is a duplicate.
I have a Parent class and two derived classes which ...
1
vote
1answer
149 views
Building an Object System Around shared_ptr
I am using shared_ptr as my garbage collection for a toy language that I am working on which compiles to C++. My objects derive from a common base class above that there are strings and numbers then ...
1
vote
2answers
720 views
C++ passing a derived class shared_ptr to a templated function
First something that should work, then something that doesn't. Why doesn't it is the question.
I declare two classes:
class Base { ... };
class Derived : public Base { ... };
I then have the ...
9
votes
4answers
4k views
boost::shared_ptr and Inheritance
I am facing a situation in which I have a std::vector of boost::shared_ptrs of a base class. During the course of my program I need to store shared pointers to derived class objects in that vector too ...
1
vote
1answer
230 views
Passing a list of derived classes to a function expecting a list of base classes in C++
I have the following classes
class Parent {
virtual void doStuff() = 0;
};
class Child : public Parent {
void doStuff() {
// Some computation here
}
};
And I have a function with the ...
3
votes
2answers
554 views
shared_ptr returning an interface
So I'm hacking away at my code trying to turn it in to some half-decent C++0x code using GCC 4.5..
shared_ptr<IEngineLayer*> createEngineLayer(void)
{
try
{
CEngineLayer* engine ...
0
votes
3answers
885 views
Iterating & containers of smart pointers
I have a container of smart pointers to mutable objects. I have to write two *for_each* loops, one for accessing the objects as read-only data and another for mutable data. The compiler is telling ...

