📄 logicalelement.h
字号:
// Class automatically generated by Dev-C++ New Class wizard
#ifndef LOGICALELEMENT_H
#define LOGICALELEMENT_H
class LogicalElement
{
public:
// class constructor
LogicalElement(char chElement, bool bPositive = true);
char Element()
{
return m_chElement;
}
void Element(char chElement)
{
m_chElement = chElement;
}
bool Value()
{
return m_bValue;
}
bool Value(bool value)
{
m_bValue = value;
}
bool Positive()
{
return m_bPositive;
}
void Positive(bool bPositive)
{
m_bPositive = bPositive;
}
private:
bool m_bValue;
char m_chElement;
bool m_bPositive;
};
#endif // LOGICALELEMENT_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -