I have this class template:
template<class... T>
class Test {
std::vector<TestCase*> test_cases;
public:
Test() {
// Here, for each T an instance should be added to test_cases.
test_cases.push_back((new T)...);
}
};
This works fine for one template argument, but for multiple arguments I get this error:
error: too many arguments to function call, expected 1, have 2
How can I use variadic templates with new this way? What is the correct syntax?
EDIT: I think my question wasn't quite clear. What I want is this:
Test<TestCase1, TestCase2, TestCase3>;
// The constructor will then be:
test_cases.push_back(new TestCase1);
test_cases.push_back(new TestCase2);
test_cases.push_back(new TestCase3);
My compiler is clang 163.7.1 with this flag: -std=c++0x.
std::vector<T*> test_cases;looks odd since T is more than one type there. – awoodland Sep 18 '11 at 19:19Tis a subclass ofTestCase(that's why I use pointers). I will change this. – WTP'-- Sep 18 '11 at 19:20test_cases.push_back(new T())...;. – Kerrek SB Sep 18 '11 at 19:42vector<void*>):int,doubleandchardon’t share a common base class. – Konrad Rudolph Sep 18 '11 at 19:56