16 lines
116 B
C++
16 lines
116 B
C++
|
|
||
|
class Foo
|
||
|
{
|
||
|
public:
|
||
|
Foo(int i);
|
||
|
|
||
|
Foo(double d)
|
||
|
: Foo(static_cast<int>(d))
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
int m_i;
|
||
|
};
|