first commit

Dependencies:   mbed

MyClassA.h

Committer:
kafka
Date:
2020-10-06
Revision:
2:65f24e5a3ce4
Parent:
1:0ab6ec2cda59

File content as of revision 2:65f24e5a3ce4:

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;
};