#include "Test.h" const char* Test::name() { return "Test"; } Test::Test(int foo) : m_int(foo) , m_double(0.0) {} Test::Test(double foo) : m_int(0) , m_double(foo) {}