mirror of
https://github.com/lucaspalomodevelop/cpp_stuff.git
synced 2026-03-13 06:49:37 +00:00
12 lines
153 B
C++
12 lines
153 B
C++
#include<stdio.h>
|
|
#include <string>
|
|
|
|
class tier{
|
|
public:
|
|
tier();
|
|
|
|
std::string getLaut();
|
|
protected:
|
|
std::string Laut;
|
|
};
|