Klavier implementiert

This commit is contained in:
Tobias Kachel 2026-05-27 13:51:04 +02:00
parent 3a509f18ed
commit e56437fb06

View File

@ -1 +1,6 @@
#include "Klavier.h" #include "Klavier.h"
#include <iostream>
using namespace std;
Klavier::Klavier() { cout << "Konstruktor: Klavier()" << endl; }
Klavier::~Klavier() { cout << "Destruktor: Klavier()" << endl; }
void Klavier::spielen() { cout << "Klavier klimpert" << endl; }