Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
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; };