MCPcopy Create free account
hub / github.com/Serial-Studio/Serial-Studio / CreateInverse

Method CreateInverse

lib/mdflib/mdflib/src/cc4block.cpp:140–144  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

138void Cc4Block::Flags(uint16_t flags) { flags_ = flags; }
139
140IChannelConversion* Cc4Block::CreateInverse() {
141 cc_block_= std::make_unique<Cc4Block>();
142 cc_block_->Init(*this);
143 return cc_block_.get();
144}
145
146IChannelConversion* Cc4Block::Inverse() const {
147 return cc_block_ ? cc_block_.get() : nullptr;

Callers 3

TestChannelConversionMethod · 0.45
EXPORTFEATUREFUNCFunction · 0.45

Calls 2

InitMethod · 0.45
getMethod · 0.45

Tested by 1

TestChannelConversionMethod · 0.36