Tagged Questions
0
votes
2answers
922 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:
...