diff --git a/SCHNApps/src/plugin.cpp b/SCHNApps/src/plugin.cpp new file mode 100644 index 0000000000000000000000000000000000000000..0781265fac4a8d452e2a97d05a1a03c371ed0eb0 --- /dev/null +++ b/SCHNApps/src/plugin.cpp @@ -0,0 +1,44 @@ +#include "plugin.h" + +#include + +namespace CGoGN +{ + +namespace SCHNApps +{ + +Plugin::Plugin() : m_schnapps(NULL) +{ + glewInit(); +} + +Plugin::~Plugin() +{} + + +//const QString& Plugin::getName() const +//{ /*return m_name; */return QString("pipo");} + +QString Plugin::getName() +{ return m_name; } + +QString Plugin::getFilePath() +{ return m_filePath; } + +SCHNApps* Plugin::getSCHNApps() +{ return m_schnapps; } + + +void Plugin::setName(const QString& name) +{ m_name = name; } + +void Plugin::setFilePath(const QString& f) +{ m_filePath = f; } + +void Plugin::setSCHNApps(SCHNApps* s) +{ m_schnapps = s; } + +} // namespace SCHNApps + +} // namespace CGoGN