mirror of
https://github.com/lucaspalomodevelop/cpp_stuff.git
synced 2026-03-13 06:49:37 +00:00
17 lines
191 B
C++
17 lines
191 B
C++
#ifndef TIER_H
|
|
#define TIER_H
|
|
#include <stdio.h>
|
|
#include <string>
|
|
#include "tier.h"
|
|
|
|
tier::tier()
|
|
{
|
|
this->Laut = "void";
|
|
}
|
|
|
|
std::string tier::getLaut()
|
|
{
|
|
|
|
return this->Laut;
|
|
}
|
|
#endif |