Developer documentation | Axl-2.5.1

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