first commit

Dependencies:   mbed

Revision:
1:0ab6ec2cda59
Parent:
0:8217b9bfb66a
--- a/MyClassA.h	Tue Oct 06 15:38:04 2020 +0000
+++ b/MyClassA.h	Tue Oct 06 15:59:02 2020 +0000
@@ -0,0 +1,10 @@
+class MyClassA
+{
+    public:
+        MyClassA (int x = 0, bool wahr = true) : _x(x), _wahr(wahr) {};
+        bool getWahr() {return _wahr;};
+        bool getX() {return _x;};
+    private:
+        int _x;
+        bool _wahr;
+};