first commit

Dependencies:   mbed

Committer:
kafka
Date:
Tue Oct 06 17:22:26 2020 +0000
Revision:
2:65f24e5a3ce4
Parent:
0:8217b9bfb66a
3rd commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
kafka 0:8217b9bfb66a 1 class MyClass
kafka 0:8217b9bfb66a 2 {
kafka 0:8217b9bfb66a 3 public:
kafka 0:8217b9bfb66a 4 MyClass(double init_messwert = 0): _messwert(init_messwert) {};
kafka 0:8217b9bfb66a 5 double get_wert() {return _messwert;};
kafka 0:8217b9bfb66a 6 private:
kafka 0:8217b9bfb66a 7 double _messwert;
kafka 0:8217b9bfb66a 8 };