mirror of
https://github.com/lucaspalomodevelop/cpp_stuff.git
synced 2026-03-12 22:47:22 +00:00
28 lines
314 B
C++
28 lines
314 B
C++
#ifndef TIER_H
|
|
#define TIER_H
|
|
#include <stdio.h>
|
|
#include <string>
|
|
#include "tier.h"
|
|
|
|
// class tier
|
|
// {
|
|
// public:
|
|
// tier();
|
|
|
|
// std::string getLaut();
|
|
|
|
// protected:
|
|
// std::string Laut;
|
|
// };
|
|
|
|
tier::tier()
|
|
{
|
|
this->Laut = "void";
|
|
}
|
|
|
|
std::string tier::getLaut()
|
|
{
|
|
|
|
return this->Laut;
|
|
}
|
|
#endif |