mirror of
https://github.com/lucaspalomodevelop/cpp_stuff.git
synced 2026-03-12 22:47:22 +00:00
14 lines
204 B
C++
14 lines
204 B
C++
#ifndef TIER_H //ensuring that this object is only initialized once
|
|
#include "tier.cpp"
|
|
#endif
|
|
|
|
class katze : public tier
|
|
{
|
|
public:
|
|
katze();
|
|
};
|
|
|
|
katze::katze() : tier()
|
|
{
|
|
Laut = "miau";
|
|
} |