7 lines
263 B
C++
7 lines
263 B
C++
#include "Klavier.h"
|
|
#include <iostream>
|
|
using namespace std;
|
|
Klavier::Klavier() { cout << "Konstruktor: Klavier()" << endl; }
|
|
Klavier::~Klavier() { cout << "Destruktor: ~Klavier()" << endl; }
|
|
void Klavier::spielen() const { cout << "Klavier klimpert" << endl; }
|