Hello!
Is there a way to check at compile time if some class has constructor with certain arguments ? ?
For example:
class foo {
foo(std::string &s) {
}
};
I want to check at compile time that constructor with std::string& always defined. Maybe boost provides such functionality ?