![](/media/cache/img/default_profile.jpg.50x50_q85.jpg)
first commit
MyClass.h@2:65f24e5a3ce4, 2020-10-06 (annotated)
- 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?
User | Revision | Line number | New 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 | }; |