Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
luyikei
VLMC
Commits
2766361e
Commit
2766361e
authored
Nov 19, 2009
by
Clement CHAVANCE
Browse files
added a default skeleton for an effect module.
also fixed a typo in the .pro name
parent
07ba2749
Changes
3
Hide whitespace changes
Inline
Side-by-side
modules/effects/squeleton/Skeleton.cpp
0 → 100644
View file @
2766361e
#include
"Skeleton.h"
Skeleton
::
Skeleton
()
:
GenericEffect
()
//Call ctor when refactored
{
//Nothing to do
}
Skeleton
::~
Skeleton
()
{
//Nothing to do
}
void
Skeleton
::
render
(
void
)
{
return
;
}
modules/effects/squeleton/Skeleton.h
0 → 100644
View file @
2766361e
#ifndef SKELETON_H
#define SKELETON_H
#include
"GenericEffect.h"
class
Skeleton
:
public
GenericEffect
{
Q_CLASSINFO
(
"authors"
,
"Clement CHAVANCE"
)
Q_CLASSINFO
(
"mail"
,
"kinder@vlmc.org"
)
Q_CLASSINFO
(
"name"
,
"Skeleton"
)
Q_CLASSINFO
(
"www"
,
"www.vlmc.org"
)
Q_CLASSINFO
(
"version"
,
"0.1"
)
Q_CLASSINFO
(
"description"
,
"Exemple of a skeleton plugin"
)
Q_CLASSINFO
(
"category"
,
"Exemples"
)
public:
Skeleton
();
~
Skeleton
();
void
render
(
void
);
};
extern
"C"
{
Skeleton
*
}
#endif
modules/effects/squeleton/s
qu
eleton.pro
→
modules/effects/squeleton/s
k
eleton.pro
View file @
2766361e
File moved
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