53 lines
1.2 KiB
C++
53 lines
1.2 KiB
C++
#include "bus.h"
|
|
|
|
namespace domain {
|
|
|
|
Wire::Wire(std::string name, WireType type, int width, bool hidden, bool hasTerminate, Value terminateWith)
|
|
: name(name), type(type), width(width), hidden(hidden), hasTerminate(hasTerminate), terminateWith(terminateWith)
|
|
{}
|
|
|
|
std::string Wire::getName() {
|
|
return name;
|
|
}
|
|
int Wire::getWidth() {
|
|
return width;
|
|
}
|
|
bool Wire::isHidden() {
|
|
return hidden;
|
|
}
|
|
|
|
bool Wire::hasTerminateWith() {
|
|
return hasTerminate;
|
|
}
|
|
Value Wire::getTerminateWith() {
|
|
return terminateWith;
|
|
}
|
|
Wire::WireType Wire::getType() {
|
|
return type;
|
|
}
|
|
|
|
Bus::Bus(std::string name, std::string tooltip, BusType type, std::pair<int, int> count, std::vector<Wire> wires, std::optional<ui::Bus> displayBus)
|
|
: name(name), tooltip(tooltip), type(type), count(count), wires(wires), displayBus(displayBus)
|
|
{}
|
|
|
|
std::string Bus::getName() {
|
|
return name;
|
|
}
|
|
std::string Bus::getTooltip() {
|
|
return tooltip;
|
|
}
|
|
Bus::BusType Bus::getType() {
|
|
return type;
|
|
}
|
|
std::pair<int, int> Bus::getCount() {
|
|
return count;
|
|
}
|
|
std::vector<Wire> Bus::getWires() {
|
|
return wires;
|
|
}
|
|
std::optional<ui::Bus> Bus::getDisplayBus() {
|
|
return displayBus;
|
|
}
|
|
|
|
} // namespace domain
|