blob: d9c13a76718774d249d435c74a2b00794774e291 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#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)
{}
|