BitAccess.h
- Committer:
- moneneholic
- Date:
- 2016-08-04
- Revision:
- 0:0ee1a4a231ac
File content as of revision 0:0ee1a4a231ac:
/*共用体を使用せず変数にビット単位でアクセスするためのライブラリ*/ class BitAccess { public: BitAccess(); void setByte(char data); bool b0; bool b1; bool b2; bool b3; bool b4; bool b5; bool b6; bool b7; private: unsigned char Byte; };