cagdas d
/
_uebung_demirtas_06102020
first commit
Diff: MyClass.h
- Revision:
- 0:8217b9bfb66a
diff -r 000000000000 -r 8217b9bfb66a MyClass.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/MyClass.h Tue Oct 06 15:38:04 2020 +0000 @@ -0,0 +1,8 @@ +class MyClass +{ + public: + MyClass(double init_messwert = 0): _messwert(init_messwert) {}; + double get_wert() {return _messwert;}; + private: + double _messwert; +}; \ No newline at end of file