I need some wrapper around C++ dynamic arrays, so a class with following properties:
class Dyn_array { std::string name; int length; int* head; }