16 lines
132 B
C++
16 lines
132 B
C++
|
|
||
|
|
||
|
class Kalle
|
||
|
{
|
||
|
private:
|
||
|
typedef std::vector<int> ints;
|
||
|
ints i;
|
||
|
public:
|
||
|
Kalle();
|
||
|
};
|
||
|
|
||
|
Kalle::Kalle()
|
||
|
{
|
||
|
|
||
|
}
|