Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Thomas Pitiot
CGoGN
Commits
6e701b3d
Commit
6e701b3d
authored
Sep 19, 2014
by
Sylvain Thery
Browse files
forgotten file
parent
ac48435a
Changes
1
Hide whitespace changes
Inline
Side-by-side
SCHNApps/src/plugin.cpp
0 → 100644
View file @
6e701b3d
#include
"plugin.h"
#include
<GL/glew.h>
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
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment