Developer documentation | Axl-2.5.1

axlAbstractVolumeNurbs.cpp
Go to the documentation of this file.
1 /* axlAbstractVolumeNurbs.cpp ---
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 #include "axlAbstractVolumeNurbs.h"
21 
22 #include <dtkCoreSupport/dtkGlobal.h>
23 
24 class axlAbstractVolumeNurbsPrivate
25 {
26 public:
27 };
28 
29 axlAbstractVolumeNurbs::axlAbstractVolumeNurbs(void) : axlAbstractVolumeBSpline(), d(new axlAbstractVolumeNurbsPrivate)
30 {
31 
32 }
33 
35 {
36  delete d;
37 
38  d = NULL;
39 }