12 lines
349 B
C++
12 lines
349 B
C++
#include "piezoresistive_a_plugin.h"
|
|
|
|
#include <memory>
|
|
|
|
ProtocolBundle PiezoresistiveAPlugin::createBundle() {
|
|
ProtocolBundle bundle;
|
|
bundle.codec = std::make_shared<PiezoresistiveACodec>();
|
|
bundle.decoder = std::make_shared<PiezoresistiveADecoder>();
|
|
bundle.format = std::make_shared<PiezoresistiveAFormat>();
|
|
return bundle;
|
|
}
|