Frapper  1.0a
AmbientOcclusionNodePlugin.h
Go to the documentation of this file.
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 #ifndef AMBIENTOCCLUSIONNODEPLUGIN_H
13 #define AMBIENTOCCLUSIONNODEPLUGIN_H
14 
15 #include "NodeTypeInterface.h"
16 
17 namespace AmbientOcclusionNode {
18 using namespace Frapper;
19 
23 class AmbientOcclusionNodePlugin : public QObject, public NodeTypeInterface
24 {
25 
26  Q_OBJECT
27  Q_INTERFACES(NodeTypeInterface)
28 
29 public: // functions
30 
38  virtual Node * createNode ( const QString &name, ParameterGroup *parameterRoot );
39 
40 };
41 
42 } // namespace AmbientOcclusionNode
43 
44 #endif