Tagged Questions
3
votes
2answers
163 views
Class design for self-linked classes with generic pointer type
I am currently modifying a complex class that has nodes pointing to themselves just like linked lists or graphs. I want it to be used in shared memory using boost::interprocess functions. Now I am ...
0
votes
2answers
915 views
Dynamically change allocation strategy in boost::vector and boost::matrix
In my new project i am building a data management module.I want to give a simple template storage type to upper layers like
template<typename T>
class Data
{
public:
T getValue();
private:
...