Client c1;
Client(const char* name = "default name") : next(NULL), _kit(NULL), _name(new char[strlen(name) + 1]) { strcpy(_name, name); }