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