The ptr-vector tag has no wiki summary.
2
votes
2answers
112 views
C++: why boost::ptr_vector resize needs object to have default constructor
I am using a boost::ptr_vector over just std::vector as it will handle the deletion of all of the pointers for me. However when I do:
ptr_vector<SoftLabelRandomTreeFunctor> functors;
...
3
votes
1answer
107 views
C++:member reference or pointer?
I have a collection (currently boost::ptr_vector) of objects (lets call this vec) that needs to be passed to a few functors. I want all of the functors to have a reference/pointer to the same vec ...
0
votes
2answers
81 views
Randomly assign to boost::ptr_vector
I want to randomly assign to a boost::ptr_vector. Using the normal STL vector I would do this:
class A{
};
A* a1 = new A();
A* a2 = new A();
vector<A*> normal_vec;
normal_vec.resize(2);
...
1
vote
3answers
148 views
How to erase “this” from boost::ptr_vector
I have a boost::ptr_vector containing pointers to class "holdable".
boost::ptr_vector<holdable> items;
I add new items to this vector from within the holdable class like this:
...
1
vote
0answers
25 views
Can I use a ptr_vector as heap?
I would like to replace a std:vector which is used as a heap (sort_heap) with a ptr_vector.
The author of ptr_vector on http://sourceforge.net/projects/ptr-vector/ mentions that using std namespace ...
1
vote
1answer
415 views
boost ptr_vector iterator
I am iterating through the children of a tree node. The children are stored in a ptr_vector, and at some point throughout the iteration I fall into infinite recursion, but I cannot figure out why.
...
1
vote
3answers
178 views
ptr_vector is not freed properly
I am trying to use a ptr_vector to store some pointers, but I get an error as soon as my main method.
Here is my code:
int main(void)
{
boost::ptr_vector<string> temp;
string s1 = ...
0
votes
3answers
132 views
Accessing method of derived class when using ptr_vector
Setup
class Base
{
public:
Base();
virtual ~Base();
int getType();
protected:
int type;
};
class DerivedA : public Base
{
public:
DerivedA() { this->type = 1; };
...
1
vote
1answer
84 views
boost ptr_vector handling removal “by reference”
My class has a pointer vector:
ptr_vector<Class> vec;
And in some "setup" method adds a few classes to the vector:
void setupOrSomething()
{
vec.push_back(new Class(...));
....
}
...
1
vote
0answers
573 views
boost::ptr_vector questions
I want to have a boost::ptr_vector of polymorphic pointers to objects (got this part mostly working), but I am having trouble with some functionality of it.
I want to load the ptr_vector using a ...
2
votes
1answer
294 views
Can't make a vector of a class containing a ptr_vector<an_abstract_class>
I need to have a std::vector of boost::ptr_vectors. To make their management easier, I enclosed the boost::ptr_vector in a class (Zoo) and made a std::vector of it (allZoos). Look at a minimal code ...
0
votes
2answers
342 views
Get a pointer instead of a reference from a boost::ptr_vector
I recently found the boost ptr_vector useful to manage my collection of heap-allocated objects. The pointer collection library is very nice, but unfortunately, I'm being held up by one thing.
...
0
votes
1answer
167 views
Adding member boost::ptr_vector<>
I have the fallowing classes:
class CpuUsage {
public:
CpuUsage();
virtual ~CpuUsage();
void SetCpuTotalTime(CpuCore _newVal);
CpuCore GetCpuTotalTimes();
void ...
0
votes
2answers
99 views
error: invalid use of 'Config::testMap'
Here is the code:
#include <iostream>
#include <string>
#include <map>
#include <stdexcept>
#include <boost/ptr_container/ptr_vector.hpp>
struct TestStruct
{
...
1
vote
1answer
269 views
C++ Sharing elements in a boost::ptr_container?
Please consider the following piece of code:
int main()
{
typedef boost::ptr_vector<int> ptr_vector;
ptr_vector vec0;
vec0.push_back(new int(1));
vec0.push_back(new int(2));
...
0
votes
1answer
365 views
Accessing derived objects in boost::ptr_vector
I am using a boost::ptr_vector < class A > , which I also use to store objects of class B : public class A. I want to be able to access the class B objects in the vector; how do I cast to get ...
1
vote
1answer
336 views
should I erase by myself the pointer of an boost::ptr_vector?
I was wondering if this code leak :
int main()
{
boost::ptr_vector <char> v;
v.push_back(new char[10]);
v.clear()
}
Will the ptr_vector destructor or clear() function delete the ...
2
votes
1answer
2k views
boost::shared_ptr semantics (copying)
I just wanted to have a fresh pair of eyes that the below code is correct in that:
The pointers contained in the object trifoo (stored in a ptr_vector) are the shared pointers f, g, h.
Also, what is ...
2
votes
2answers
415 views
Does ptr_vector iterator not require increments?
#include <boost/ptr_container/ptr_vector.hpp>
#include <iostream>
using namespace std;
class Derived
{
public:
int i;
Derived() {cout<<"Constructed ...
1
vote
1answer
210 views
Derived class stored in ptr_vector not being destructed
Was trying to find the best way to use ptr_vector to store, access and release objects, especially when the stored object is inherited from other (ptr_vector should not have any issues with object ...
1
vote
1answer
1k views
Boost FOR_EACH Over A Ptr_Vector?
I'm currently having fun trying to learn some of the Boost libary. I'm currently doing what I guess will be a future homework project (semester hasn't started yet). However, this question is not about ...
2
votes
2answers
450 views
How to retrieve a reference from a boost ptr_vector?
I have two classes: an Object class, and an ObjectManager class. The ObjectManager class stores "Objects" via a ptr_vector container. There are some instances where I need to retrieve references to ...
0
votes
1answer
361 views
ptr_vector - _CrtDumpMemoryLeaks() - memory leaks even though destructor is called
I'm working on a game engine and in an earlier question it was suggested that I start using boost::ptr_vector to maintain a list of pointers.
The basic idea is to have several State's, each State has ...
0
votes
3answers
680 views
boost::ptr_vector and find_if
I have a class:
//header file
class CMDatabase
{
class Try;
typedef boost::shared_ptr<Try> TryPtr;
typedef boost::ptr_vector<Try> TryVector;
typedef TryVector::iterator ...
1
vote
1answer
225 views
Is there a way to Boost.Assign a ptr_vector?
Usually like this:
#include <boost/assign/std/vector.hpp>
vector<int> v;
v += 1,2,3,4,5;
Except for a:
#include <boost/ptr_container/ptr_vector.hpp>
boost::ptr_vector<int> ...
0
votes
1answer
307 views
Iterating through boost ptr_vector
I have a ptr_vector list of my own objects. Something like this:
boost::ptr_vector<SomeClass> *list;
list->push_back(new SomeClass()>;
...
BOOST_FOREACH(SomeClass *tempObj, list) // [x]
...
1
vote
2answers
594 views
pushing back an boost::ptr_vector<…>::iterator in another boost::ptr_vector?
I have the following code (just typed it in here, might have typos or stuff):
typedef boost::ptr_vector<SomeClass> tvec;
tvec v;
// ... fill v ...
tvec vsnap;
for(tvec::iterator it = ...
4
votes
2answers
324 views
Moving objects from one Boost ptr_container to another
I want to move certain element from a to b:
boost::ptr_vector<Foo> a, b;
// ...
b.push_back(a.release(a.begin() + i)));
The above code does not compile because the release function returns ...
2
votes
1answer
664 views
Adding boost::ptr_vector to deque, typeid mismatch
I'm trying to add a boost::ptr_vector to a std::deque, using push_back(). When I do, I get a BOOST::ASSERT for the typeid mismatch.
In "boost_ptr_container_clone_allocator"
T* res = new T( r );
...
2
votes
1answer
542 views
Releasing a boost::ptr_vector, not matching documentation
I'm using boost 1.37, and I'm trying to use a boost::ptr_vector, and transfer ownership of it so I can return it from a function. Looking at the boost documentation ...
0
votes
2answers
891 views
Problems with boost::ptr_vector and boost::any
ok, so I got a doubt, I want to know if this is possible:
I'm using a database, with generic data (strings, ints, bools, etc...). Whenever an object is constructed or a member of an object is ...
6
votes
6answers
7k views
How to erase elements from boost::ptr_vector
So I'm trying to get rid of my std::vector's by using boost::ptr_vector. Now I'm trying to remove an element from one, and have the removed element deleted as well. The most obvious thing to me was to ...