Tagged Questions

1
vote
1answer
136 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
2answers
713 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 ...