Developer documentation | Axl-2.5.1

axlAbstractVolume.h
Go to the documentation of this file.
1 /* axlAbstractVolume.h ---
2  *
3  * Author: Anais Ducoffe
4  * Copyright (C) 2012 - Anais Ducoffe, Inria.
5  * Created:
6  * Version: $Id$
7  * Last-Updated:
8  * By:
9  * Update #:
10  */
11 
12 /* Commentary:
13  *
14  */
15 
16 /* Change log:
17  *
18  */
19 
20 #ifndef AXLABSTRACTVOLUME_H
21 #define AXLABSTRACTVOLUME_H
22 
23 #include "axlCoreExport.h"
24 
26 
27 class axlMesh;
28 
29 class axlAbstractVolumePrivate;
30 
32 {
33  Q_OBJECT
34 
35 public:
36  axlAbstractVolume(void);
37  virtual ~axlAbstractVolume(void);
38 
39  virtual int dimension(void) const;
40 
41  virtual axlMesh *toAxlMesh(void);
42 
43 
44 
45 public:
46  virtual void *volume(void);
47 
48 private:
49  axlAbstractVolumePrivate *d;
50 };
51 #endif
#define AXLCORE_EXPORT
Class axlAbstractData defines an API for all type of axel data.
Class axlMesh defines a piecewise-linear 3D object.
Definition: axlMesh.h:41