Developer documentation | Axl-2.5.1

axlSphereCreator.h
Go to the documentation of this file.
1 /* axlSphereCreator.h ---
2  *
3  * Author: Anais Ducoffe
4  * Copyright (C) 2013, Anais Ducoffe, INRIA.
5  */
6 
7 /* Commentary:
8  */
9 
10 /* Change log:
11  *
12  */
13 
14 #ifndef AXLSPHERECREATOR_H
15 #define AXLSPHERECREATOR_H
16 
17 #include "axlCoreExport.h"
18 
20 
21 #include <QtCore>
22 
23 class axlSphere;
24 class axlDouble;
25 class axlAbstractData;
26 
27 class axlSphereCreatorPrivate;
28 
30 {
31  Q_OBJECT
32 
33 public:
34  axlSphereCreator(QObject *parent = 0);
35  virtual ~axlSphereCreator(void);
36 
37 
38 public :
39  virtual axlAbstractData * getInput(int channel) const;
40  void copyProcess(axlAbstractProcess *process);
41  bool hasParameters(void);
42 
43 
44 
45 /* dtk overload */
46 public :
47  virtual int update(void);
48 
49 public :
50 
51  virtual QString description(void) const;
52  virtual QString identifier(void) const;
53 
54 public :
55  virtual void setInput(dtkAbstractData *newData, int channel);
56  virtual void setParameter(double data);
57  virtual dtkAbstractData *output(void);
58 
59 private:
60  axlSphereCreatorPrivate *d;
61 };
62 
63 AXLCORE_EXPORT dtkAbstractProcess *createaxlSphereCreator(void);
64 
65 #endif // AXLSPHERECREATOR_H
virtual bool hasParameters(void)
Class axlDouble defines a double.
Definition: axlDouble.h:29
virtual void copyProcess(axlAbstractProcess *process)
virtual QString description(void) const
axlAbstractData * getInput(int channel) const
virtual void setInput(dtkAbstractData *newData, int channel)
Class axlSphere defines 3D spheres.
Definition: axlSphere.h:33
virtual dtkAbstractData * output(void)
virtual QString identifier(void) const
#define AXLCORE_EXPORT
Class axlAbstractData defines an API for all type of axel data.
AXLCORE_EXPORT dtkAbstractProcess * createaxlSphereCreator(void)