Skip to content

Commit

Permalink
Update OpenEphysLib
Browse files Browse the repository at this point in the history
  • Loading branch information
medengineer committed Jan 17, 2024
1 parent 083b5a1 commit 1718a17
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/OpenEphysLib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ extern "C" EXPORT void getLibInfo(Plugin::LibraryInfo* info)
{
info->apiVersion = PLUGIN_API_VER;
info->name = "Mean Spike Rate";
info->libVersion = "1.0";
info->libVersion = "0.1.0";
info->numPlugins = NUM_PLUGINS;
}

Expand All @@ -47,9 +47,9 @@ extern "C" EXPORT int getPluginInfo(int index, Plugin::PluginInfo* info)
switch (index)
{
case 0:
info->type = Plugin::PROCESSOR;
info->type = Plugin::Type::PROCESSOR;
info->processor.name = "Mean Spike Rate";
info->processor.type = Plugin::Processor::FILTER;
info->processor.type = Processor::Type::FILTER;
info->processor.creator = &(Plugin::createProcessor<MeanSpikeRate>);
break;
default:
Expand Down

0 comments on commit 1718a17

Please sign in to comment.