Is this ok?

Code:
class Settings
{
	public:
	BYTE brStyle0_1_2;
	BYTE spAssignOp0_1_2;
	bool spFuncsAndStructs;
	bool spSemiColins;
	bool spOperators;
	bool replNullWZero;
	bool spCommas;
	Settings()
	{
		this->brStyle0_1_2= 2;
		this->spAssignOp0_1_2= 1;
		this->spFuncsAndStructs= 0;
		this->spSemiColins= 1;
		this->spOperators= 1;
		this->spCommas= 1;
		this->replNullWZero= 1;
	}
};