Developer documentation | Axl-2.5.1

axlAbstractCurve.h
Go to the documentation of this file.
1 /* axlAbstractCurve.h ---
2  *
3  * Author: Meriadeg Perrinel
4  * Copyright (C) 2008 - Meriadeg Perrinel, Inria.
5  * Created: Tue Nov 9 16:58:59 2010 (+0100)
6  * Version: $Id$
7  * Last-Updated: Mon Dec 6 15:32:45 2010 (+0100)
8  * By: Meriadeg Perrinel
9  * Update #: 22
10  */
11 
12 /* Commentary:
13  *
14  */
15 
16 /* Change log:
17  *
18  */
19 
20 #ifndef AXLABSTRACTCURVE_H
21 #define AXLABSTRACTCURVE_H
22 
23 #include "axlCoreExport.h"
25 
26 #include <QtCore>
27 
28 class axlAbstractCurvePrivate;
29 
31 {
32  Q_OBJECT
33 
34 public:
35  axlAbstractCurve(void);
36  virtual ~axlAbstractCurve(void);
37 
38  virtual int dimension(void) const;
39  virtual bool isPlanar(void) const;
40 
41 
42 public:
43  virtual void *curve(void);
44 
45 private:
46  axlAbstractCurvePrivate *d;
47 };
48 #endif
#define AXLCORE_EXPORT
Class axlAbstractData defines an API for all type of axel data.