it is not possible to write
dev.get_attribute_config("attr_name");
we need to write
std::string attr_name("attr_name");
dev.get_attribute_config(attr_name);
So it seems that get_attribute_config do not accept const char or const string.
Is it possible to solve this problem
thanks
Frederic
Fixed in CVS. Will be included in tango V7
Cheers