예제 #1
0
void CCharVariable::SetBoolean(const bool Value)
{
 m_Value = BoolToChar(Value);
}
예제 #2
0
// Writes the string "a = b" to the char str
void DisplayVar(char * a, bool b, char * str) {
	strcpy(str, a);
	strcat(str, BoolToChar(b));
}
예제 #3
0
char CBooleanVariable::GetChar(void) const
{
 return BoolToChar(m_Value);
}