Files
tactileipc3d/plugins/piezoresistive_a/piezoresistive_a_plugin.cpp
2026-02-02 22:18:38 +08:00

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;
}