Developer documentation | Axl-2.5.1

axlPlaneCreator.h
Go to the documentation of this file.
1 /* axlPlaneCreator.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 AXLPLANECREATOR_H
15 #define AXLPLANECREATOR_H
16 
17 #include "axlCoreExport.h"
18 
20 
21 #include <QtCore>
22 
23 class axlPoint;
24 class axlPlane;
25 class axlAbstractData;
26 
27 class axlPlaneCreatorPrivate;
28 
30 {
31  Q_OBJECT
32 
33 public:
34  axlPlaneCreator(QObject *parent = 0);
35  virtual ~axlPlaneCreator(void);
36 
37 
38 public :
39  virtual axlAbstractData * getInput(int channel) const;
40  void copyProcess(axlAbstractProcess *process);
41  bool hasParameters(void);
42 
43 /* dtk overload */
44 public :
45  virtual int update(void);
46 
47 public :
48 
49  virtual QString description(void) const;
50  virtual QString identifier(void) const;
51 
52 public :
53  static bool registered(void) ;
54 
55 public :
56  virtual void setInput(dtkAbstractData *newData, int channel);
57  virtual dtkAbstractData *output(void);
58 
59 private:
60  axlPlaneCreatorPrivate *d;
61 };
62 
63 AXLCORE_EXPORT dtkAbstractProcess *createaxlPlaneCreator(void);
64 
65 #endif// AXLPLANECREATOR_H
Class axlPoint defines 3D points.
Definition: axlPoint.h:34
virtual bool hasParameters(void)
Class axlPlane defines 3D planes.
Definition: axlPlane.h:34
virtual void copyProcess(axlAbstractProcess *process)
virtual QString description(void) const
axlAbstractData * getInput(int channel) const
virtual void setInput(dtkAbstractData *newData, int channel)
virtual dtkAbstractData * output(void)
virtual QString identifier(void) const
AXLCORE_EXPORT dtkAbstractProcess * createaxlPlaneCreator(void)
#define AXLCORE_EXPORT
Class axlAbstractData defines an API for all type of axel data.