mirror of
https://github.com/lucaspalomodevelop/Kaffee-Rechner.git
synced 2026-03-13 07:59:38 +00:00
15 lines
300 B
C++
15 lines
300 B
C++
#include "./coffee.cpp"
|
|
#include "../../module.hpp"
|
|
|
|
#include <iostream>
|
|
#include <string>
|
|
#include <functional>
|
|
|
|
class KaffeeRechner : public Module
|
|
{
|
|
public:
|
|
KaffeeRechner() : Module("Coffee-Rechner", "Rechnet den Koffeingehalt von Kaffee aus")
|
|
{
|
|
this->setInit(coffeeMain);
|
|
}
|
|
}; |