mirror of
https://github.com/lucaspalomodevelop/cpp_stuff.git
synced 2026-03-13 06:49:37 +00:00
12 lines
132 B
C++
12 lines
132 B
C++
// #include "tier.cpp"
|
|
|
|
class katze : public tier
|
|
{
|
|
public:
|
|
katze();
|
|
};
|
|
|
|
katze::katze() : tier()
|
|
{
|
|
Laut = "miau";
|
|
} |