9 lines
141 B
C++
9 lines
141 B
C++
|
|
#include "WrongCat.hpp"
|
||
|
|
|
||
|
|
#include <iostream>
|
||
|
|
|
||
|
|
WrongCat::WrongCat() {
|
||
|
|
std::cout << __PRETTY_FUNCTION__ << std::endl;
|
||
|
|
type = "WrongCat";
|
||
|
|
}
|