/
atikbif
/
RelkonIDE
Обзор
Документация
Войти
/
atikbif
/
RelkonIDE
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Debugger/bitio.cpp
72 строки
859 B
Roman Pelevin
Завершён рефакторинг кода отладчика
24 авг 2015, 16:35
24 авг 2015, 16:35
fec5068
Код
Авторство
О чём код?
#include "bitio.h" QPushButton *BitIO::getButton() const { return button; } void BitIO::setButton(QPushButton *value) { button = value; } QLineEdit *BitIO::getComment() const { return comment; } void BitIO::setComment(QLineEdit *value) { comment = value; } int BitIO::getBitNum() const { return bitNum; } void BitIO::setBitNum(int value) { bitNum = value; } QString BitIO::getName() const { return name; } void BitIO::setName(const QString &value) { name = value; } int BitIO::getAddress() const { return address; } void BitIO::setAddress(int value) { address = value; } bool BitIO::getState() const { return state; } void BitIO::setState(bool value) { state = value; } BitIO::BitIO():button(nullptr),comment(nullptr),bitNum(0),name(""),address(0),state(false) { } BitIO::~BitIO() { }