Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
635 views

Pointer to an element in boost pointer container

I am just starting to use boost::ptr_vector. I have a ptr_vector pctr as a member of one class A and want another class B to refer to an element in pctr. While constructing an object of class B I want ...
1
vote
1answer
708 views

boost pointer container insert (ptr_list)

For some reason, I cannot get ptr_list to insert elements. boost::ptr_list<int> somelist; int *someint = new int(123); int *someint2 = new int(456); somelist.push_back(someint); boost:: ...
1
vote
2answers
335 views

C++: Problem with ptr_multimap::insert

Please consider the following code: #include "boost/ptr_container/ptr_map.hpp" int main() { typedef boost::ptr_multimap<char, const int> M; M m; char c = 'c'; ...
0
votes
3answers
104 views

dynamic_cast reference to base class in stl container

Is it possible to store a bunch of objects by their base class in say an std::list without pointers. I would really like the objects to be held in the container, then retrieve a pointer to the object ...
0
votes
2answers
222 views

Invoking the copy constructor of a base class for boost pointer containers?

For the below code, when v is copied, the members of Model class do not get copied. #include <boost/ptr_container/ptr_vector.hpp> #include <iostream> using namespace std; class ...
0
votes
2answers
145 views

How to invoke custom copy constructors and custom assignment operators in Boost Pointer Containers?

Note: I've flagged this question to the moderator, for deletion. Please don't answer or vote on this question. I'll need to re-ask this question in a different way soon. In the below code, the ...
0
votes
1answer
95 views

Is there a priority_queue adaptor for boost pointer containers?

Is there a priority_queue adaptor that works with boost pointer containers?