Skip to content
Snippets Groups Projects
Commit b376526c authored by Aaron Cuevas Lopez's avatar Aaron Cuevas Lopez
Browse files

Fix NWB compilation issues on Linux

parent c4db1eee
No related branches found
No related tags found
No related merge requests found
......@@ -306,7 +306,7 @@ int NWBFile::createFileStructure()
return filename;
}
HDF5RecordingData* NWBFile::createRecordingStructures(String basePath, NWBRecordingInfo& info, String helpText, int chunk_size, String ancestry)
HDF5RecordingData* NWBFile::createRecordingStructures(String basePath, const NWBRecordingInfo& info, String helpText, int chunk_size, String ancestry)
{
StringArray ancestryStrings;
ancestryStrings.add("TimeSeries");
......@@ -339,4 +339,4 @@ int NWBFile::createFileStructure()
dSet = createDataSet(STR, 1, 0, path + "/" + name);
if (!dSet) return;
dSet->writeDataBlock(1, STR, text.toUTF8());
}
\ No newline at end of file
}
......@@ -61,7 +61,7 @@ namespace NWBRecording
int createFileStructure() override;
private:
HDF5RecordingData* createRecordingStructures(String basePath, NWBRecordingInfo& info, String helpText, int chunk_size, String ancestry);
HDF5RecordingData* createRecordingStructures(String basePath, const NWBRecordingInfo& info, String helpText, int chunk_size, String ancestry);
void createTextDataSet(String path, String name, String text);
const String filename;
......@@ -100,4 +100,4 @@ namespace NWBRecording
}
#endif
\ No newline at end of file
#endif
......@@ -33,7 +33,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
using namespace Plugin;
#define NUM_PLUGINS 2
#define NUM_PLUGINS 1
extern "C" EXPORT void getLibInfo(Plugin::LibraryInfo* info)
{
......@@ -67,4 +67,4 @@ BOOL WINAPI DllMain(IN HINSTANCE hDllHandle,
return TRUE;
}
#endif
\ No newline at end of file
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment