mirror of
https://github.com/lucaspalomodevelop/cpp_stuff.git
synced 2026-03-13 06:49:37 +00:00
22 lines
253 B
C++
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;
|
|
} |