Developer documentation | Axl-2.5.1

axlPointConverter.h
Go to the documentation of this file.
1 /* axlPointConverter.h ---
2  *
3  * Author: Julien Wintz
4  * Copyright (C) 2008-2011 - Julien Wintz, Inria.
5  * Created: Tue Jan 24 11:01:27 2012 (+0100)
6  * Version: $Id$
7  * Last-Updated: Tue Jan 24 11:25:45 2012 (+0100)
8  * By: Julien Wintz
9  * Update #: 25
10  */
11 
12 /* Commentary:
13  *
14  */
15 
16 /* Change log:
17  *
18  */
19 
20 #ifndef AXLPOINTCONVERTER_H
21 #define AXLPOINTCONVERTER_H
22 
24 
25 class axlPointConverterPrivate;
26 
28 {
29  Q_OBJECT
30 
31 public:
32  axlPointConverter(void);
33  ~axlPointConverter(void);
34 
35  QString description (void) const;
36  QStringList fromTypes(void) const;
37  QString toType (void) const;
38 
39 public:
40  static bool registered(void);
41 
42 public slots:
43  axlMesh *toMesh(void);
44 
45 public:
46  void setData(dtkAbstractData *data);
47 
48 private:
49  axlPointConverterPrivate *d;
50 };
51 
52 dtkAbstractDataConverter *createaxlPointConverter(void);
53 
54 #endif //AXLPOINTCONVERTER_H
dtkAbstractDataConverter * createaxlPointConverter(void)
#define AXLCORE_EXPORT
virtual axlMesh * toMesh(void)
Mesh conversion.
Class axlMesh defines a piecewise-linear 3D object.
Definition: axlMesh.h:41