Skip to content

Commit

Permalink
Change processor type to Sink
Browse files Browse the repository at this point in the history
  • Loading branch information
jsiegle committed Jun 25, 2022
1 parent df1d1e6 commit f92d9f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/OpenEphysLib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ extern "C" EXPORT int getPluginInfo(int index, Plugin::PluginInfo* info)
info->type = Plugin::PROCESSOR; //Type of plugin. See "Source/Processors/PluginManager/OpenEphysPlugin.h" for complete info about the different type structures
//For processor
info->processor.name = "ZMQ Interface"; //Processor name shown in the GUI
info->processor.type = Plugin::Processor::FILTER; //Type of processor. Can be FilterProcessor, SourceProcessor, SinkProcessor or UtilityProcessor. Specifies where on the processor list will appear
info->processor.type = Plugin::Processor::SINK; //Type of processor. Can be FilterProcessor, SourceProcessor, SinkProcessor or UtilityProcessor. Specifies where on the processor list will appear
info->processor.creator = &(Plugin::createProcessor<ZmqInterface>); //Class factory pointer. Replace "ExampleProcessor" with the name of your class.
break;
default:
Expand Down

0 comments on commit f92d9f1

Please sign in to comment.