Developer documentation | Axl-2.5.1

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