Skip to content

Commit

Permalink
Merge bcc442c into ae86dfb
Browse files Browse the repository at this point in the history
  • Loading branch information
agarny committed Aug 8, 2018
2 parents ae86dfb + bcc442c commit fd3e2a7
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 24 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -892,8 +892,8 @@ set(PLUGINS
support/StandardSupport
support/ZIPSupport

thirdParty/BioSignalML
thirdParty/CellMLAPI
thirdParty/libBioSignalML
thirdParty/libgit2
thirdParty/libNuML
thirdParty/libSEDML
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/dataStore/BioSignalMLDataStore/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ add_plugin(BioSignalMLDataStore
src/biosignalmldatastoreexporter.h
src/biosignalmldatastoreplugin.h
PLUGINS
BioSignalML
DataStore
libBioSignalML
)
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ PLUGININFO_FUNC BioSignalMLDataStorePluginInfo()
descriptions.insert("fr", QString::fromUtf8("une extension de magasin de données spécifique à BioSignalML."));

return new PluginInfo(PluginInfo::DataStore, true, false,
QStringList() << "BioSignalML" << "DataStore",
QStringList() << "DataStore" << "libBioSignalML",
descriptions);
}

Expand Down
3 changes: 0 additions & 3 deletions src/plugins/thirdParty/BioSignalML/src/biosignalmlplugin.json

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project(BioSignalMLPlugin)
project(libBioSignalMLPlugin)

# Name and version of our package

Expand Down Expand Up @@ -212,14 +212,17 @@ set(BIOSIGNALML_LIBRARIES
)

# Add the plugin
# Note: we would normally use '${PACKAGE_NAME}' rather than 'OAuth', but it
# can't be done here since the name of our package is different from that
# of our plugin...

add_plugin(${PACKAGE_NAME}
add_plugin(libBioSignalML
SOURCES
../../plugininfo.cpp

src/biosignalmlplugin.cpp
src/libbiosignalmlplugin.cpp
HEADERS_MOC
src/biosignalmlplugin.h
src/libbiosignalmlplugin.h
QT_MODULES
Core
EXTERNAL_BINARIES_DIR
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*******************************************************************************/

//==============================================================================
// BioSignalML plugin
// libBioSignalML plugin
//==============================================================================

#include "biosignalmlplugin.h"
#include "libbiosignalmlplugin.h"

//==============================================================================

namespace OpenCOR {
namespace BioSignalML {
namespace libBioSignalML {

//==============================================================================

PLUGININFO_FUNC BioSignalMLPluginInfo()
PLUGININFO_FUNC libBioSignalMLPluginInfo()
{
Descriptions descriptions;

Expand All @@ -44,7 +44,7 @@ PLUGININFO_FUNC BioSignalMLPluginInfo()

//==============================================================================

} // namespace BioSignalML
} // namespace libBioSignalML
} // namespace OpenCOR

//==============================================================================
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*******************************************************************************/

//==============================================================================
// BioSignalML plugin
// libBioSignalML plugin
//==============================================================================

#pragma once
Expand All @@ -30,24 +30,24 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
//==============================================================================

namespace OpenCOR {
namespace BioSignalML {
namespace libBioSignalML {

//==============================================================================

PLUGININFO_FUNC BioSignalMLPluginInfo();
PLUGININFO_FUNC libBioSignalMLPluginInfo();

//==============================================================================

class BioSignalMLPlugin : public QObject
class libBioSignalMLPlugin : public QObject
{
Q_OBJECT

Q_PLUGIN_METADATA(IID "OpenCOR.BioSignalMLPlugin" FILE "biosignalmlplugin.json")
Q_PLUGIN_METADATA(IID "OpenCOR.libBioSignalMLPlugin" FILE "libbiosignalmlplugin.json")
};

//==============================================================================

} // namespace BioSignalML
} // namespace libBioSignalML
} // namespace OpenCOR

//==============================================================================
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"Keys": [ "libBioSignalMLPlugin" ]
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*******************************************************************************/

//==============================================================================
// BioSignalML tests
// libBioSignalML tests
//==============================================================================

#include "tests.h"
Expand All @@ -36,7 +36,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.

void Tests::basicTests()
{
// Some very basic tests to make sure that we have access to BioSignalML
// Some very basic tests to make sure that we have access to libBioSignalML

// Check the version of BioSignalML and typedobject

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*******************************************************************************/

//==============================================================================
// BioSignalML tests
// libBioSignalML tests
//==============================================================================

#pragma once
Expand Down

0 comments on commit fd3e2a7

Please sign in to comment.