cpp_stuff/classes/tier.cpp
2022-11-05 12:55:04 +01:00

22 lines
253 B
C++

#include<stdio.h>
#include <string>
class tier{
public:
tier();
std::string getLaut();
protected:
std::string Laut;
};
tier::tier() {
this->Laut = "void";
}
std::string tier::getLaut()
{
return this->Laut;
}